Skip to main content
GET
/
v1
/
agents
Get Agents
curl --request GET \
  --url https://api.clarm.com/v1/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "description": "<string>",
    "steps": [
      "<string>"
    ],
    "instructions": "<string>",
    "collections": [
      123
    ]
  }
]
Retrieve all available agents (AI personas) that can be used for search and interaction.

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
required
steps
string[] | null
required
instructions
string | null
required
collections
integer[]
required