Skip to main content
GET
/
api
/
agents
List Agents
curl --request GET \
  --url https://api.example.com/api/agents
{
  "agents": [
    {
      "agent_id": "agent_12345",
      "agent_name": "Sales Rep",
      "stt_provider": "deepgram",
      // ...
    },
    {
      "agent_id": "agent_67890",
      "agent_name": "Support Bot",
      "stt_provider": "deepgram",
      // ...
    }
  ],
  "organization": "My Company",
  "user_role": "admin"
}
Retrieve a list of all agents configured for your organization.

Response

agents
array
List of agent objects.
organization
string
Name of the organization.
user_role
string
Role of the requesting user.
{
  "agents": [
    {
      "agent_id": "agent_12345",
      "agent_name": "Sales Rep",
      "stt_provider": "deepgram",
      // ...
    },
    {
      "agent_id": "agent_67890",
      "agent_name": "Support Bot",
      "stt_provider": "deepgram",
      // ...
    }
  ],
  "organization": "My Company",
  "user_role": "admin"
}