v2

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-07-21130282381.6 KB
API Subscriptions

Get the API's subscribers

Get the API's subscribers

List applications that have subscribed to a given API.<br> The results are paginated.

get/environments/{envId}/apis/{apiId}/subscribers

Query parameters

namestring

Name to use to filter subscribers. <br> Can be a part of a name. <br> For example, foo will match foo, foobar and barfoo.

pageinteger

The page number for pagination.

perPageinteger

The number of items per page for pagination.

Response

Page of API subscribers

Example response

{
  "data": [
    {
      "id": "00f8c9e7-78fc-4907-b8c9-e778fc790750",
      "name": "My App",
      "description": "I can use a hundred characters to describe this App.",
      "domain": "https://my-app.com",
      "type": "iOS",
      "primaryOwner": {
        "id": "00f8c9e7-78fc-4907-b8c9-e778fc790750",
        "displayName": "John Doe"
      },
      "apiKeyMode": "UNSPECIFIED"
    }
  ]
}