API Specification
List API Specifications
Returns a list of specifications for an API. The specification can be of type OpenAPI or AsyncAPI. Note: You can only have one specification for an API. This endpoint is deprecated and will be removed: use /versions instead.
get/v3/apis/{apiId}/specifications
Query parameters
page[size]integer
Example:10
The maximum number of items to include per page. The last page of a collection may include fewer items.
page[number]integer
Example:1
Determines which page of the entities to retrieve.
Filters API Specs in the response.
Response
List of API specifications (OpenAPI or AsyncAPI)
Example response
{
"meta": {
"page": {
"number": 1,
"size": 10,
"total": 100
}
},
"data": [
{
"id": "7710d5c4-d902-410b-992f-18b814155b53",
"type": "oas3",
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}
]
}