Skip to main content
GET
/
apps
List Applications
curl --request GET \
  --url https://api.bunny.net/mc/apps \
  --header 'AccessKey: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "displayEndpoint": {
        "id": "<string>",
        "address": "<string>",
        "type": "CDN"
      },
      "status": "Unknown"
    }
  ],
  "meta": {
    "totalItems": 123
  },
  "cursor": "<string>"
}

Authorizations

AccessKey
string
header
required

Please enter a valid personal API key.

Query Parameters

nextCursor
string
limit
integer<int32>
default:20
Required range: 1 <= x <= 1000

Response

Applications list retrieved successfully.

List applications response

items
object[]
meta
object
cursor
string | null