Skip to main content
GET
/
v1
/
agents
List agents
curl --request GET \
  --url https://api.nixflex.com/v1/agents

Documentation Index

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

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

Returns all agents for your account.

Request

curl https://api.nixflex.com/v1/agents \
  -H "Authorization: Bearer KEY_ID:KEY_SECRET"

Query parameters

ParameterTypeDefaultNotes
limitint25Max 100
offsetint0For pagination
is_activeboolFilter by active status

Response

200 OK:
{
  "agents": [
    {
      "agent_id": "agent_125207e452f8714a",
      "name": "Acme Dental Receptionist",
      "language": "en",
      "voice_id": "Dennis",
      "is_active": true,
      "created_at": "2026-05-17T03:45:12Z"
    }
  ],
  "count": 1,
  "limit": 25,
  "offset": 0
}
Sorted by created_at descending.

Empty result

Returns an empty array (not 404) if you have no agents yet:
{
  "agents": [],
  "count": 0
}