Skip to content

Get All Software Tools

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""softwareToolName""softwareType"
Example:order=wwwUpdateDate,softwareToolName
orderDirectionstring

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

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

Filter by software tool name using the "contains" behavior.

softwareTypestring

Filter by software tool type. This is a string exact match.

Default:"all"
includeDiscontinuedboolean

Include discontinued software. Default listing only shows active software.

Default:false
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'

Responses

Successful response

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