1. Docs
  2. API Reference
  3. List Applications in the Account

List Applications in the Account

GET/portal/v1/accounts/{accountSlug}/applications

Authentication

  • Bearer Token Authorization

    JWT access token

Code samples

cURLJavaScriptPythonGo
curl -X GET "https://api.canopy.dev/portal/v1/accounts/{accountSlug}/applications" \
  -H "Authorization: Bearer $CANOPY_TOKEN"

Responses

200 Applications returned
{
  "items": [
    {
      "id": "string",
      "account_id": "string",
      "name": "string",
      "slug": "string",
      "settings": {},
      "version": 0,
      "created_at": "2026-04-20T12:00:00.000Z",
      "updated_at": "2026-04-20T12:00:00.000Z"
    }
  ]
}

application/json

  • itemsApplicationResponseDto[]*
401 Invalid or expired token
403 This token is not authorized for this endpoint (wrong principal type — e.g., admin token on identity-only endpoint, or vice versa)

Returned object

On this page

Related endpoints

POSTCreate a new Application in the Account