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>'
import requests

url = "https://api.bland.ai/v1/evals/workbench-setups"

headers = {"authorization": "<authorization>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {authorization: '<authorization>'}};

fetch('https://api.bland.ai/v1/evals/workbench-setups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bland.ai/v1/evals/workbench-setups",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"authorization: <authorization>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.bland.ai/v1/evals/workbench-setups"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("authorization", "<authorization>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.bland.ai/v1/evals/workbench-setups")
.header("authorization", "<authorization>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.bland.ai/v1/evals/workbench-setups")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["authorization"] = '<authorization>'

response = http.request(request)
puts response.read_body
{
  "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
  }
}

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
  }
}