Admiral
Applications

List applications

GET
/api/v1/applications

Scope: app:read

Authorization

bearerAuth
AuthorizationBearer <token>

Personal Access Token (PAT) or Service Access Token (SAT). Pass the token in the Authorization header: Bearer admp_...

In: header

Query Parameters

filter?filter

Filter expression to narrow results. Uses the Admiral filter DSL (see the API documentation for the full operator and predicate reference).

Filterable fields:

  • name: filter by application name.
  • labels.key: filter by label key.

Example: field['name'] = 'inventory-api' AND field['labels.team'] = 'logistics'

Lengthlength <= 1024
page_size?page_size

Maximum number of applications to return per page. Defaults to 50 when omitted or 0; must not exceed 100.

Formatint32
Range0 <= value <= 100
page_token?page_token

Opaque pagination token from a previous response.

Response Body

application/json

curl -X GET "https://api.admiral.io/api/v1/applications"
{  "applications": [    {      "id": "a1b2c3d4-5678-9abc-def0-1234567890ab",      "name": "inventory-api",      "description": "Core inventory management service for tracking warehouse stock levels and fulfillment.",      "labels": {        "team": "logistics",        "tier": "critical"      },      "created_by": {        "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",        "display_name": "Alex Chen",        "email": "[email protected]"      },      "created_at": "2025-09-15T10:30:00Z",      "updated_at": "2025-11-02T14:22:00Z"    }  ],  "next_page_token": "string"}