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)
The page number for pagination (default 0). This is multiplied by limit to get the actual offset.
Sorting property (default sort is by www update date). Multiple sorts can be supplied by comma concatenation.
Sorting direction (default is "desc"). Multiple directions can be defined for multiple sorts.
Filter by board/kit type.
- Mock serverhttps://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/boards-kits
- Production Serverhttps://api.renesas.com/web-data/v1/boards-kits
- Staging Serverhttps://api.renesas-dev.com/web-data/v1/boards-kits
- 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/boards-kits?limit=10&offset=0&order=wwwUpdateDate%2Ctitle&orderDirection=desc%2Casc&boardKitId=string&boardKitType=development&category=string' \
-H 'x-api-key: YOUR_API_KEY_HERE'{ "data": [ { … }, { … } ], "pagination": { "offset": 0, "limit": 10, "total": 156, "has_more": true } }
- Mock serverhttps://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/boards-kits/{board_kit_id}
- Production Serverhttps://api.renesas.com/web-data/v1/boards-kits/{board_kit_id}
- Staging Serverhttps://api.renesas-dev.com/web-data/v1/boards-kits/{board_kit_id}
- 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/boards-kits/{board_kit_id}' \
-H 'x-api-key: YOUR_API_KEY_HERE'Successful response
Public URL of the board or kit page on the Renesas website.
Type classification of the board or kit.
Category.
Detailed description of the board or kit.
Key features and capabilities of the board or kit.
Target applications and use cases.
Array of image URLs for the board or kit.
List of orderable product parts associated with this board/kit.
List of related product identifiers.
Featured documents associated with the board/kit.
List of related document identifiers.
Compatible software tools and development environments.
{ "boardKitId": "rx71m-starter-kit-plus", "wwwUpdateDate": "2024-01-15T10:30:00Z", "url": "https://www.renesas.com/design-resources/boards-kits/rx71m-starter-kit-plus", "uuid": "5cdd14dc-21a8-4e9e-9d4d-4a83042b4e47", "title": "Renesas Starter Kit+ for RX71M", "boardKitType": "evaluation", "category": [ { … }, { … } ], "description": "32-bit microcontroller capable of up to 240 MHz operation. Employs the RXv2 core, a more powerful evolved form of the RX core that was used in previous RX devices, while maintaining compatibility. Realizes 1160 CoreMark, the top performance among microcontrollers with built-in flash.", "features": "On-board debugger, Arduino compatible headers, multiple interface options", "applications": "Industrial automation, motor control, IoT applications", "additionalDetails": "The RX71M evaluation board provides a complete development environment for evaluating and developing applications using the RX71M microcontroller.", "images": [ "https://www.renesas.com/sites/default/files/rx71m-evb-top.jpg", "https://www.renesas.com/sites/default/files/rx71m-evb-bottom.jpg" ], "orderableProducts": [ { … }, { … } ], "relatedBoardsKits": [ { … }, { … } ], "featuredDocuments": [ { … } ], "relatedDocuments": [ { … } ], "softwareTools": [ { … }, { … } ], "partner": [ { … } ] }