Skip to main content
GET
/
v1
/
manifest
Fetch gateway manifest
curl --request GET \
  --url https://gateway.example.com/v1/manifest \
  --header 'Authorization: Bearer <token>'
{
  "version": "2026-03-18",
  "gateway": {
    "id": "acme.gateway",
    "name": "Acme Gateway",
    "url": "https://gateway.example.com",
    "auth": {
      "type": "bearer"
    },
    "capabilities": {
      "asyncJobs": true,
      "jobCallbacks": true,
      "approvals": true
    }
  },
  "agent": {
    "id": "customer-research-agent",
    "name": "Customer Research Agent",
    "description": "Internal workflow layer exposed through the gateway."
  },
  "actions": [
    {
      "id": "context.fetch_pricing",
      "name": "fetch_pricing_context",
      "title": "Fetch pricing context",
      "description": "Return a compact internal pricing summary.",
      "executionMode": "sync",
      "inputSchema": {
        "type": "object",
        "properties": {
          "topic": {
            "type": "string"
          }
        },
        "required": [
          "topic"
        ],
        "additionalProperties": false
      },
      "requiresApproval": false,
      "sideEffectLevel": "read",
      "idempotent": true
    }
  ],
  "callbacks": {
    "jobResults": true,
    "approvals": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.atlasmeets.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Manifest returned successfully

version
string
required
gateway
object
required
agent
object
required
actions
object[]
required
callbacks
object
required