Skip to content

Get All Product Parts

Request

Security
ApiKeyAuth
Query
limitinteger, [ 1 .. 100 ]

The number of results to return (default 10).

Default:10
offsetinteger, >= 0

The page number for pagination (default 0). This is multiplied by limit to get the actual offset.

Default:0
orderstring

Sorting property (default sort is by last updated date). Multiple sorts can be supplied by comma concatenation.

Default:"last_updated"
Enum:"last_updated""part_number""part_status""1ku_price""stock"
Example:order=last_updated,part_number
orderDirectionstring

Sorting direction (default is "desc"). Multiple directions can be defined for multiple sorts.

Default:"desc"
Example:orderDirection=desc,asc
part_number_prefixstring

Filter by part number prefix.

part_numberstring

Filter by exact part number.

part_statusstring

Filter by part status.

Enum:"Active""Preview""NRND""Not Recommended for New Designs""Not Recommended<br /> for New Designs""Obsolete"
generic_product_idstring

Filter by generic product ID.

product_familystring

Filter by product family.

curl -i -X GET \
  'https://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/product-parts?limit=10&offset=0&order=last_updated%2Cpart_number&orderDirection=desc%2Casc&part_number_prefix=string&part_number=string&part_status=Active&generic_product_id=string&product_family=string' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Successful response

Bodyapplication/json
dataArray of objects(product_part)
paginationobject
Response
{ "data": [ {}, {}, {} ], "pagination": { "offset": 0, "limit": 3, "total": 8973, "has_more": true } }