Skip to content

Renesas Web Data API (1.0.0)

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.

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

Product

Endpoints for retrieving products.

Operations

Product Part

Endpoints for retrieving product parts.

Operations

Document

Endpoint for retrieving documents.

Operations

Board & Kit

Endpoints for retrieving boards and kits.

Operations

Software Tool

Endpoints for retrieving software tools.

Operations

Package

Endpoints for retrieving packages.

Operations

Get All Packages

Request

Security
ApiKeyAuth
Query
limitinteger[ 1 .. 100 ]

The number of results to return (default 10).

Default 10
offsetinteger>= 0

The page number for pagination (default 0). This is multiplied by limit to get the actual offset.

Default 0
orderstring

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
orderDirectionstring

Sorting direction (default is "desc"). Multiple directions can be defined for multiple sorts.

Default "desc"
Example: orderDirection=desc,asc
packageCodestring

Filter by package identifier.

packageTypestring

Filter by package type.

packageStatusstring

Filter by package status.

Enum"Active""Inactive"
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'

Responses

Successful response

Bodyapplication/json
dataArray of objects(package)
paginationobject
Response
application/json
{ "data": [ {}, {} ], "pagination": { "offset": 0, "limit": 10, "total": 245, "has_more": true } }

Get Package by ID

Request

Security
ApiKeyAuth
Path
package_idstringrequired

The unique identifier of the package.

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'

Responses

Successful response

Bodyapplication/json
packageCodestring

Unique identifier for the package (Package Code).

Example: "pkg_20128"
wwwUpdateDatestring

Date the package page was last updated on the website.

urlstring(uri)

Public URL of the package page on the Renesas website.

Example: "https://www.renesas.com/package/pkg20128"
uuidstring

UUID of the package.

Example: "b87ecb11-cd57-4204-b320-63c7dfd6525d"
titlestring

Title/name of the package.

Example: "pkg_20128 (FCBGA 1368)"
packageTypestring

Type classification of the package.

Example: "FCBGA"
packageNamestring

Name used to describe Renesas packages.

Example: "PRBG1368KA-A"
categorystring or null

Package category classification.

Example: "IC"
classstring or null

Package class.

Example: "IC"
descriptionstring

Descriptive text for this package.

Example: "Terminal Material - Base: Sn-Ag-Cu"
specificationsobject

Technical specifications of the package.

packageStatusstring

Current status of the package.

Enum"Active""Inactive"
Example: "Active"
regulatoryobject

Regulatory and compliance information.

tubeOrTraystring or null

Packaging carrier type (tube/tray).

previousCodestring or null

Package code maintained as part of the Renesas and Intersil merger.

imagesArray of strings(uri)

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"]
relatedDocumentsArray of objects

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": [ {}, {} ] }