Skip to main content
GET
/
api
/
agents
List Agents
curl --request GET \
  --url https://api.example.com/api/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "description": "<string>",
    "logo_url": "<string>",
    "status": "<string>",
    "created_at": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

id
integer
required
name
string
required
description
string | null
required
logo_url
string | null
required
status
string
required
created_at
string
required