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/products
- Production Serverhttps://api.renesas.com/web-data/v1/products
- Staging Serverhttps://api.renesas-dev.com/web-data/v1/products
- 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/products?limit=10&offset=0&order=wwwUpdateDate%2Ctitle&orderDirection=desc%2Casc&productId=string&category=string' \
-H 'x-api-key: YOUR_API_KEY_HERE'{ "data": [ { … } ], "pagination": { "offset": 0, "limit": 10, "total": 256, "has_more": true } }
- Mock serverhttps://developer.renesas.com/docs/web-data-api/_mock/apis/web-data/products/{product_id}
- Production Serverhttps://api.renesas.com/web-data/v1/products/{product_id}
- Staging Serverhttps://api.renesas-dev.com/web-data/v1/products/{product_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/products/{product_id}' \
-H 'x-api-key: YOUR_API_KEY_HERE'Successful response
Title of the product page.
Public URL of the product page on the Renesas website.
Category.
Detailed description of the product.
Key features and capabilities of the product.
Target applications and use cases.
Array of image URLs for the product.
List of orderable product parts associated with this product.
List of related product identifiers.
List of related boards and kits.
Featured documents associated with the product.
List of related document identifiers.
List of secondary related document identifiers.
List of software tools and sample code associated with this product.
{ "productId": "RA2A1", "wwwUpdateDate": "2024-01-15T10:30:00Z", "url": "https://www.renesas.com/products/ra2a1", "uuid": "8a9c4b2e-1f3d-4e9a-b5c6-7d8e9f0a1b2c", "title": "32-bit Microcontrollers with 48MHz Arm Cortex-M23 and Integration of 24-bit Sigma-Delta ADC", "category": [ { … }, { … } ], "description": "The RA2A1 group is a high-performance, low-power analog microcontroller based on an Arm® Cortex®-M23 core with a 48MHz clock frequency and a wide range of analog front ends, including two types of A/D converters. This group supports a 16-bit SAR A/D converter, a 24-bit sigma-delta A/D converter, a 12-bit D/A converter, comparators, and operational amplifiers. These functions are suitable for applications that measure and adjust sensor signals with high accuracy. In addition, UART, I2C, simple SPI, CAN, and USB 2.0 Full-Speed are also integrated as peripheral functions, enabling easy communication with other devices. The RA2A1 supports a wide operating voltage range of 1.6V to 5.5V, enabling communication with devices operating at 5V without level shifters. The RA2A1 MCU targets industrial sensor applications with low power consumption and low-cost advantage.", "features": "• 48MHz Arm Cortex-M23\n• 256kB Flash memory and 32kB SRAM\n• 8kB Data Flash to store data as in EEPROM\n• Scalable from 32-pin to 64-pin packages\n• Capacitive touch sensing unit\n• 16-bit SAR A/D, 24-bit SD A/D\n• 12-bit D/A, 8-bit D/A\n• OPAMP (3ch), ACMP-HS/LP\n• USB 2.0 Full Speed\n• CAN 2.0\n• SCI (UART, Simple SPI, Simple I2C)", "applications": "Industrial automation (photoelectric sensor, fiber sensor, temperature sensor), Process automation (pressure sensor, flow control meter, single phase meter), Building automation/home appliance (smoke detector), Healthcare (pulse oximeters, body composition measurement), General purpose", "additionalDetails": "The RA2A1 MCU is designed for precision analog applications requiring both high accuracy and low power consumption.", "images": [ "https://www.renesas.com/sites/default/files/ra2a1-block-diagram.png" ], "orderableProducts": [ { … }, { … }, { … } ], "relatedProducts": [ { … }, { … } ], "relatedBoardsKits": [ { … } ], "featuredDocuments": [ { … }, { … } ], "relatedDocuments": [ { … }, { … }, { … } ], "relatedDocumentsSecondary": [ { … } ], "softwareTools": [ { … }, { … }, { … } ] }