Skip to main content
GET
/
agents
/
types
List Agent Types
curl --request GET \
  --url https://api.example.com/agents/types/
[
  {
    "name": "<string>",
    "organization_id": "<string>",
    "display_name": "<string>",
    "provider": "<string>",
    "model": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "id": "<string>",
    "description": "<string>",
    "icon": "<string>",
    "temperature": 123,
    "context_window": 123,
    "system_instructions": "<string>",
    "mcp_servers": [
      "<string>"
    ],
    "builtin_tools": [
      "<string>"
    ],
    "default_plan_template": [
      "<string>"
    ],
    "agent_resource_id": "<string>",
    "runner_resource_id": "<string>",
    "created_by": "<string>",
    "version": 1,
    "conversation_routing": {
      "when": "<string>",
      "examples": [
        "<string>"
      ],
      "avoid": "<string>"
    }
  }
]

Response

200 - application/json

Successful Response

name
string
required
organization_id
string
required
display_name
string
required
provider
string
required
model
string
required
created_at
string<date-time>
updated_at
string<date-time>
id
string | null
description
string | null
icon
string | null
temperature
number | null
context_window
integer | null
system_instructions
string | null
mcp_servers
string[]
builtin_tools
string[]
default_plan_template
string[] | null
agent_resource_id
string | null
runner_resource_id
string | null
created_by
string | null
version
integer
default:1
conversation_routing
ConversationRoutingManifest · object

Routing rules for conversation-to-agent assignment.

Attributes: when: Natural language description of when this agent should handle a conversation. examples: Example messages that should route to this agent. avoid: Natural language description of messages this agent should not handle.