Skip to main content
GET
/
v1
/
evals
/
agents
List Eval Agents
curl --request GET \
  --url https://api.bland.ai/v1/evals/agents \
  --header 'authorization: <authorization>'
{
  "errors": null,
  "data": {
    "object": "list",
    "data": [
      {
        "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "name": "Empathy Check",
        "description": "Grades how empathetic the agent sounds during difficult conversations.",
        "current_version_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "active_version_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
        "active_version_number": 2,
        "enabled": true,
        "modality": "audio",
        "latest_run": {
          "id": "d4e5f6a7-b8c9-0123-defa-234567890123",
          "status": "completed",
          "created_at": "2026-05-20T14:00:00.000Z",
          "call_count": 120,
          "target_hit_count": 98,
          "graded_count": 120
        },
        "metadata": {},
        "created_at": "2026-03-01T09:00:00.000Z",
        "updated_at": "2026-05-20T14:05:00.000Z"
      }
    ],
    "has_more": false,
    "next_cursor": 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.

Headers

authorization
string
required
Your API key for authentication.

Query Parameters

limit
integer
default:"25"
Number of results to return. Between 1 and 100.
starting_after
string
Cursor: return results after this object ID.
ending_before
string
Cursor: return results before this object ID. Cannot be combined with starting_after.

Response

object
string
Always "list".
data
array of objects
The list of eval agents. Each item contains the fields below.
data[].id
string
Unique identifier for the eval agent.
data[].name
string
Display name of the eval agent.
data[].description
string | null
Optional description of what the eval agent grades.
data[].current_version_id
string
ID of the current editable draft version.
data[].active_version_id
string | null
ID of the published version experiments run against, or null if never published.
data[].active_version_number
integer | null
Version number of the published version, or null if never published.
data[].enabled
boolean
Whether the eval agent is enabled.
data[].modality
string
The modality of the eval agent. One of text or audio.
data[].latest_run
object | null
Summary of the most recent run against this agent, or null if no runs exist.
  • id - Run ID.
  • status - Status of the run.
  • created_at - ISO 8601 timestamp.
  • call_count - Number of calls evaluated.
  • target_hit_count - Number of calls that hit a target level.
  • graded_count - Number of calls that received a grade.
data[].metadata
object
Key-value metadata associated with the eval agent. Values are strings.
data[].created_at
string
ISO 8601 timestamp for when the eval agent was created.
data[].updated_at
string
ISO 8601 timestamp for when the eval agent was last updated.
has_more
boolean
Whether more results exist beyond this page.
next_cursor
string | null
Cursor to pass as starting_after to fetch the next page, or null if there are no more results.
{
  "errors": null,
  "data": {
    "object": "list",
    "data": [
      {
        "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "name": "Empathy Check",
        "description": "Grades how empathetic the agent sounds during difficult conversations.",
        "current_version_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "active_version_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
        "active_version_number": 2,
        "enabled": true,
        "modality": "audio",
        "latest_run": {
          "id": "d4e5f6a7-b8c9-0123-defa-234567890123",
          "status": "completed",
          "created_at": "2026-05-20T14:00:00.000Z",
          "call_count": 120,
          "target_hit_count": 98,
          "graded_count": 120
        },
        "metadata": {},
        "created_at": "2026-03-01T09:00:00.000Z",
        "updated_at": "2026-05-20T14:05:00.000Z"
      }
    ],
    "has_more": false,
    "next_cursor": null
  }
}