List Agents
Agents
List Agents
Returns all agents in your current organization. Access is scoped by user role — owners/admins see all agents, members see public agents plus their own private agents.
GET
List Agents
Overview
Lists all agents within your active organization. The response is filtered based on your user role:- Owners/Admins: See all agents (public + private)
- Members: See public agents + their own private agents only
Request
Headers:Response
Status:200 OK
Response Fields
| Field | Type | Description |
|---|---|---|
agents | array | List of agent objects |
agents[].id | string | Agent ID (ULID format) |
agents[].name | string | Agent display name |
agents[].description | string | Internal description |
agents[].agentArchitecture | string | pipeline, realtime, or text |
agents[].mode | string | public, private, or commercial |
agents[].model | string | LLM model (pipeline/text only) |
agents[].stt | string | STT provider (pipeline only) |
agents[].voiceId | string | Voice ID (pipeline/realtime only) |
agents[].realtimeProvider | string | openai or gemini (realtime only) |
agents[].functionCallingEnabled | boolean | Functions enabled |
agents[].enabledFunctions | array | Built-in function IDs |
agents[].enabledCustomFunctions | array | Custom function IDs |
agents[].temperature | number | 0.1–1.0 |
agents[].inactivityTimeout | number | 10–60 seconds |
agents[].greetingType | string | agentFirst or userFirst |
agents[].greetingMessage | string | Custom greeting |
agents[].lastMessage | string | Farewell message |
agents[].languages | array | Language objects |
agents[].VoiceOption | object | Voice details |
agents[].user | object | Creator info |
agents[].organization | object | Organization info |
Access Control
Owners/Admins
Members
Error Responses
401 Unauthorized
400 Bad Request
403 Forbidden
500 Server Error
Examples
cURL
JavaScript (Fetch)
Next.js (Server Component)
Related Endpoints
- Create Agent — Create a new agent
- Get Agent — Get single agent details
- Update Agent — Update agent configuration
- List All Agents — Agents across all organizations