Query Parameters (optional)
Number of agents to return. Defaults to 20.
Offset for pagination. Defaults to 0.
Response
The name of the created agent.
The type of the created agent.
The description of the created agent.
The activation status of the created agent.
The date and time the agent was created.
The date and time the agent was last updated.
The organization ID to which the agent belongs.
The voice model associated with the agent.
The voice model ID associated with the agent.
curl --location --request GET 'https://api.stateset.com/v1/agents?limit=20&offset=0' \
--header 'Authorization: Bearer <api_key>'
[
{
"id": "agent_123",
"agent_name": "Support Bot",
"agent_type": "Conversational AI Agent",
"description": "Handles order status and returns",
"activated": true,
"org_id": "org_456"
}
]