Skip to main content
GET
/
v1
/
triage
/
agents
List Agents
curl --request GET \
  --url https://api.bland.ai/v1/triage/agents \
  --header 'authorization: <authorization>'
{
  "data": {
    "items": [
      {
        "id": "66720f06-f492-4ce6-a2f2-cd84fd54613e",
        "provider_type": "blandcode",
        "display_name": "Norm",
        "description": "Default triage agent",
        "is_active": true
      }
    ],
    "next_cursor": null
  },
  "errors": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.bland.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Returns the triage agent profiles available to your org. Today this is a single built-in profile, Norm. The endpoint exists for forward compatibility.

Headers

authorization
string
required
Your API key for authentication.

Query Parameters

limit
integer
default:"50"
Number of agents to return. Minimum 1, maximum 100.
cursor
string
Opaque cursor returned as next_cursor from a previous page.

Response

data.items
array
Array of agent profiles.
data.next_cursor
string | null
Cursor for the next page, or null.
errors
null | array
null on success.
{
  "data": {
    "items": [
      {
        "id": "66720f06-f492-4ce6-a2f2-cd84fd54613e",
        "provider_type": "blandcode",
        "display_name": "Norm",
        "description": "Default triage agent",
        "is_active": true
      }
    ],
    "next_cursor": null
  },
  "errors": null
}

Docs for agents: llms.txt