Skip to content

List AI Agents

GET
/api/v3/organizations/{organisation}/ai/agents
curl --request GET \
--url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/agents \
--header 'Authorization: Bearer <token>'

Lists all AI agents for an organization. Agents are pre-configured AI assistants with specific system prompts, model settings, and tool permissions. * * Features: * - Filter by group (e.g., ‘development’, ‘compliance’) * - Organization-scoped * - Returns agent configurations without execution history

organisation
required
string

The organisation ID

group
string

Optional group filter (e.g., ‘development’, ‘compliance’)

List of agents retrieved successfully

Media typeapplication/json
object
agents
Array<object>
object
agentId
string format: uuid
name
string
description
string
group
string
modelId
string
temperature
number
maxTokens
integer
allowedTools
Array<string>
assignedSkills
Array<string>
longContext
boolean
guardrailPreset
string
isGlobal
boolean
hasOverlay
boolean
createdAt
string format: date-time
updatedAt
string format: date-time
Examplegenerated
{
"agents": [
{
"agentId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"name": "example",
"description": "example",
"group": "example",
"modelId": "example",
"temperature": 1,
"maxTokens": 1,
"allowedTools": [
"example"
],
"assignedSkills": [
"example"
],
"longContext": true,
"guardrailPreset": "example",
"isGlobal": true,
"hasOverlay": true,
"createdAt": "2026-04-15T12:00:00Z",
"updatedAt": "2026-04-15T12:00:00Z"
}
]
}

Access denied

Failed to retrieve agents