v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
API

List API Registrations

Returns a paginated list of registrations for an API.

get/v3/apis/{apiId}/registrations

Query parameters

Filters API registrations in the response.

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.

Response

Paginated list of registrations for an API.

Example response

{
  "meta": {
    "page": {
      "number": 1,
      "size": 10,
      "total": 100
    }
  },
  "data": [
    {
      "id": "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
      "portal": {
        "id": "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"
      },
      "application": {
        "id": "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"
      }
    }
  ]
}