Skip to main content
GET
/
v1
/
evals
/
workbench-setups
List Workbench Setups
curl --request GET \
  --url https://api.bland.ai/v1/evals/workbench-setups \
  --header 'authorization: <authorization>'
{
  "errors": null,
  "data": {
    "object": "list",
    "data": [
      {
        "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "name": "Onboarding Quality Check",
        "description": "Evaluates tone, accuracy, and resolution rate across onboarding calls.",
        "current_version_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "active_version_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
        "active_version_number": 3,
        "attached_agent_count": 4,
        "latest_run": {
          "id": "d4e5f6a7-b8c9-0123-defa-234567890123",
          "status": "completed",
          "created_at": "2026-05-22T10:00:00.000Z",
          "call_count": 200
        },
        "metadata": {},
        "created_at": "2026-03-15T08:00:00.000Z",
        "updated_at": "2026-05-22T10: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 workbench setups. Each item contains the fields below.
data[].id
string
Unique identifier for the workbench setup.
data[].name
string
Display name of the workbench setup.
data[].description
string | null
Optional description of the workbench setup.
data[].current_version_id
string
ID of the current editable draft version.
data[].active_version_id
string | null
ID of the published version, or null if never published.
data[].active_version_number
integer | null
Version number of the published version, or null if never published.
data[].attached_agent_count
integer
Number of eval agents currently attached to the draft version.
data[].latest_run
object | null
Summary of the most recent run against this setup, 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.
data[].metadata
object
Key-value metadata associated with the setup. Values are strings.
data[].created_at
string
ISO 8601 timestamp for when the setup was created.
data[].updated_at
string
ISO 8601 timestamp for when the setup 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": "Onboarding Quality Check",
        "description": "Evaluates tone, accuracy, and resolution rate across onboarding calls.",
        "current_version_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "active_version_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
        "active_version_number": 3,
        "attached_agent_count": 4,
        "latest_run": {
          "id": "d4e5f6a7-b8c9-0123-defa-234567890123",
          "status": "completed",
          "created_at": "2026-05-22T10:00:00.000Z",
          "call_count": 200
        },
        "metadata": {},
        "created_at": "2026-03-15T08:00:00.000Z",
        "updated_at": "2026-05-22T10:05:00.000Z"
      }
    ],
    "has_more": false,
    "next_cursor": null
  }
}