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.
- Mock serverhttps://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/software-tools
- Production Serverhttps://api.renesas.com/web-data/v1/software-tools
- Staging Serverhttps://api.renesas-dev.com/web-data/v1/software-tools
- 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/software-tools?limit=10&offset=0&order=wwwUpdateDate%2CsoftwareToolName&orderDirection=desc%2Casc&softwareToolName=string&softwareType=all&includeDiscontinued=false' \
-H 'x-api-key: YOUR_API_KEY_HERE'{ "data": [ { … }, { … } ], "pagination": { "offset": 0, "limit": 10, "total": 87, "has_more": true } }
- Mock serverhttps://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/software-tools/{software_tool_id}
- Production Serverhttps://api.renesas.com/web-data/v1/software-tools/{software_tool_id}
- Staging Serverhttps://api.renesas-dev.com/web-data/v1/software-tools/{software_tool_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/software-tools/{software_tool_id}' \
-H 'x-api-key: YOUR_API_KEY_HERE'Successful response
Unique identifier for the software tool (uses full title).
Public URL of the software tool page on the Renesas website.
Brief description of the software tool.
Detailed description of the software tool.
Parent software category name.
Key features and capabilities of the software tool.
Release notes and version information.
Description of target devices and compatibility.
Array of image URLs for the software tool.
List of compatible boards and kits.
List of orderable product parts associated with this board/kit.
Featured documents associated with the board/kit.
Technical documentation associated with the software tool.
Secondary related documents.
Related software tools (primary).
Partner information if applicable.
{ "softwareToolName": "e² studio", "wwwUpdateDate": "2024-01-15T10:30:00Z", "url": "https://www.renesas.com/software-tool/e2-studio", "uuid": "8cdd14dc-21a8-4e9e-9d4d-4a83042b4e48", "shortDescription": "Eclipse-based integrated development environment (IDE) for Renesas MCU and MPU families", "description": "e² studio is an Eclipse-based integrated development environment (IDE) that provides a complete development solution for Renesas MCU and MPU families. It offers comprehensive support for code development, debugging, and project management across all Renesas MCU and MPU product lines.", "softwareType": "IDE and Coding Tool", "parentSoftwareCategory": [ "Tools to Optimize AI Software for AD/ADAS on R-Car SoC" ], "features": "Eclipse-based IDE, integrated debugger, code generation, project templates, multi-core debugging, real-time trace", "additionalDetails": "The IDE includes advanced features such as intelligent code completion, refactoring tools, and integrated version control.", "documentationDetails": "Comprehensive documentation including user manuals, quick start guides, and video tutorials.", "downloadDetails": "Available for Windows, Linux, and macOS. Includes installer packages and update sites.", "releaseInformation": "Latest version 2024.01 released on January 15, 2024 with enhanced debugging capabilities and improved support for RZ series MPUs.", "targetDeviceDescription": "Supports all Renesas MCU and MPU families including RA, RX, RH850, RZ/A, RZ/G, and RZ/V series with comprehensive development toolchain integration.", "discontinued": false, "externalUrl": null, "images": [ "https://www.renesas.com/sites/default/files/e2studio-screenshot.png", "https://www.renesas.com/sites/default/files/e2studio-debug-view.png" ], "evaluationBoards": [ { … }, { … } ], "orderableProducts": [ { … } ], "featuredDocuments": [ { … }, { … } ], "relatedDocuments": [ { … } ], "relatedDocumentsSecondary": [ { … } ], "relatedSoftwareTools": [ { … }, { … } ], "relatedSoftwareToolsSecondary": [ { … } ], "partner": [ { … } ], "relatedVideos": [ { … } ] }