Observer
API

GET /services

List services

Parameters#

NameInRequiredTypeDescription
limitquerynointeger
cursorquerynostring

Example request#

curl -X GET "/api/v1/services" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses#

200: ok#

{
  "items": [
    {
      "id": "string",
      "name": "string",
      "description": null,
      "created_at": "2026-01-01T00:00:00.000Z"
    }
  ],
  "next_cursor": null
}

401: missing or invalid bearer token#

403: missing required scope#

404: not found (or cross-tenant: same response)#

429: rate limit exceeded#

Was this page helpful?