The Renesas Web Data API enables external systems to retrieve product metadata in real time, without relying on manual CSV downloads or periodic feed refreshes. This shift improves data consistency, streamlines integrations, and aligns with modern API-first architectures.
Renesas Web Data API (1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://developer.renesas.com/docs/web-data-api/_mock/apis/web-data
Production Server
https://api.renesas.com/web-data/v1
Staging Server
https://api.renesas-dev.com/web-data/v1
Query
The page number for pagination (default 0). This is multiplied by limit to get the actual offset.
Default 0
Sorting property (default sort is by www update date). Multiple sorts can be supplied by comma concatenation.
Default "wwwUpdateDate"
Enum"wwwUpdateDate""packageCode""packageType""packageStatus"
Example: order=wwwUpdateDate,packageCode
Sorting direction (default is "desc"). Multiple directions can be defined for multiple sorts.
Default "desc"
Example: orderDirection=desc,asc
- Mock serverhttps://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/packages
- Production Serverhttps://api.renesas.com/web-data/v1/packages
- Staging Serverhttps://api.renesas-dev.com/web-data/v1/packages
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/packages?limit=10&offset=0&order=wwwUpdateDate%2CpackageCode&orderDirection=desc%2Casc&packageCode=string&packageType=string&packageStatus=Active' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "data": [ { … }, { … } ], "pagination": { "offset": 0, "limit": 10, "total": 245, "has_more": true } }
- Mock serverhttps://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/packages/{package_code}
- Production Serverhttps://api.renesas.com/web-data/v1/packages/{package_code}
- Staging Serverhttps://api.renesas-dev.com/web-data/v1/packages/{package_code}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/packages/{package_code}' \
-H 'x-api-key: YOUR_API_KEY_HERE'Successful response
Public URL of the package page on the Renesas website.
Example: "https://www.renesas.com/package/pkg20128"
Array of image URLs for the package.
Example: ["https://www.renesas.com/sites/default/files/styles/medium/public/media/images/fcbga-1368pin-pkg20128-chip_0.png"]
List of related document identifiers.
Example: [{"agileId":"X0141154","dcpDocumentId":"PRBG1368KA-A (RDK-G-001812)","title":"Package Drawing FCBGA 1368pin PRBG1368KA-A","type":"Package Drawing","language":"en","href":"https://api.renesas.com/web-data/v1/documents/PRBG1368KA-A%20%28RDK-G-001812%29"},{"agileId":"X0061760","dcpDocumentId":"R50ZZ0006EJ0100","title":"LGA Mounting Manual","type":"Mounting Manual","language":"en","href":"https://api.renesas.com/web-data/v1/documents/R50ZZ0006EJ0100"}]
Response
application/json
{ "packageCode": "pkg_20128", "wwwUpdateDate": "2024-01-15T10:30:00Z", "url": "https://www.renesas.com/package/pkg20128", "uuid": "b87ecb11-cd57-4204-b320-63c7dfd6525d", "title": "pkg_20128 (FCBGA 1368)", "packageType": "FCBGA", "packageName": "PRBG1368KA-A", "category": "IC", "class": "IC", "description": "Terminal Material - Base: Sn-Ag-Cu", "packageStatus": "Active", "regulatory": { "leadFree": "Yes", "pbFreeCategory": "Category 1" }, "specifications": { "leadCount": 1368, "pitch": 0.5, "length": 19, "width": 19, "thickness": 2.85, "dimensions": "19 x 19 x 2.85", "jeitaStandard": "JEITA-7" }, "tubeOrTray": "Tray", "images": [ "https://www.renesas.com/sites/default/files/styles/medium/public/media/images/fcbga-1368pin-pkg20128-chip_0.png" ], "relatedDocuments": [ { … }, { … } ] }