Skip to main content
GET
/
v1
/
evals
/
runs
List Eval Runs
curl --request GET \
  --url https://api.bland.ai/v1/evals/runs \
  --header 'authorization: <authorization>'
{
  "data": {
    "object": "list",
    "data": [
      {
        "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "status": "COMPLETE",
        "triggered_by": "manual",
        "run_mode": "text",
        "resolved_call_count": 50,
        "resolved_agent_count": 3,
        "resolved_atom_count": 150,
        "completed_atom_count": 150,
        "summary": {
          "overall_score_mean": 82.4,
          "text_score_mean": 82.4,
          "audio_score_mean": null,
          "successful_call_count": 48,
          "failed_call_count": 2,
          "insufficient_evidence_count": 1,
          "target_match_count": 39,
          "pass_threshold_pct": 75,
          "overall_pass": true
        },
        "billable_cost_usd": 1.24,
        "workbench_setup_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "workbench_setup_version_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
        "metadata": {},
        "created_at": "2026-05-20T14:00:00.000Z",
        "started_at": "2026-05-20T14:00:05.000Z",
        "completed_at": "2026-05-20T14:03:42.000Z"
      },
      {
        "id": "d4e5f6a7-b8c9-0123-defa-234567890123",
        "status": "RUNNING",
        "triggered_by": "auto",
        "run_mode": "full",
        "resolved_call_count": 100,
        "resolved_agent_count": 2,
        "resolved_atom_count": 200,
        "completed_atom_count": 87,
        "summary": null,
        "billable_cost_usd": null,
        "workbench_setup_id": null,
        "workbench_setup_version_id": null,
        "metadata": { "pipeline": "nightly" },
        "created_at": "2026-05-27T02:00:00.000Z",
        "started_at": "2026-05-27T02:00:08.000Z",
        "completed_at": null
      }
    ],
    "has_more": false,
    "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.

Headers

authorization
string
required
Your API key for authentication.

Query Parameters

eval_agent_id
string
Filter to runs that included this eval agent.
workbench_setup_id
string
Filter to runs started from this workbench setup.
status
string
Filter by run status. Possible values: PENDING, QUEUED, RUNNING, COMPLETE, PARTIAL, FAILED, CANCELLED.
triggered_by
string
Filter by how the run was triggered. Possible values: manual, auto, backfill.
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 run objects.
has_more
boolean
Whether more results exist beyond this page.
next_cursor
string or null
Cursor to use in starting_after to retrieve the next page, or null if there are no more results.
{
  "data": {
    "object": "list",
    "data": [
      {
        "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "status": "COMPLETE",
        "triggered_by": "manual",
        "run_mode": "text",
        "resolved_call_count": 50,
        "resolved_agent_count": 3,
        "resolved_atom_count": 150,
        "completed_atom_count": 150,
        "summary": {
          "overall_score_mean": 82.4,
          "text_score_mean": 82.4,
          "audio_score_mean": null,
          "successful_call_count": 48,
          "failed_call_count": 2,
          "insufficient_evidence_count": 1,
          "target_match_count": 39,
          "pass_threshold_pct": 75,
          "overall_pass": true
        },
        "billable_cost_usd": 1.24,
        "workbench_setup_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "workbench_setup_version_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
        "metadata": {},
        "created_at": "2026-05-20T14:00:00.000Z",
        "started_at": "2026-05-20T14:00:05.000Z",
        "completed_at": "2026-05-20T14:03:42.000Z"
      },
      {
        "id": "d4e5f6a7-b8c9-0123-defa-234567890123",
        "status": "RUNNING",
        "triggered_by": "auto",
        "run_mode": "full",
        "resolved_call_count": 100,
        "resolved_agent_count": 2,
        "resolved_atom_count": 200,
        "completed_atom_count": 87,
        "summary": null,
        "billable_cost_usd": null,
        "workbench_setup_id": null,
        "workbench_setup_version_id": null,
        "metadata": { "pipeline": "nightly" },
        "created_at": "2026-05-27T02:00:00.000Z",
        "started_at": "2026-05-27T02:00:08.000Z",
        "completed_at": null
      }
    ],
    "has_more": false,
    "next_cursor": null
  },
  "errors": null
}