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
Title of the board or kit.
Type classification of the board or kit.
Parent product 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", "uuid": "5cdd14dc-21a8-4e9e-9d4d-4a83042b4e47", "title": "High Performance Real-time Engine 32-bit Microcontrollers for Industrial Equipment", "boardKitType": "evaluation", "category": [ "RX 32-Bit Performance/Efficiency MCUs" ], "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": [ { … } ] }