Skip to main content
GET
/
api
/
v1
/
eval_batch_runs
List Batch Runs
import requests

url = "https://www.datalab.to/api/v1/eval_batch_runs"

headers = {"X-API-Key": "<api-key>"}

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

print(response.text)
{
  "batch_runs": [
    {
      "id": 123,
      "collection_id": 123,
      "eval_rubric_id": 123,
      "pipeline_id": "<string>",
      "pipeline_type": "<string>",
      "status": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "total_files": 123,
      "completed_files": 123,
      "avg_score": 123,
      "created": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Authorizations

X-API-Key
string
header
required

Query Parameters

collection_id
integer | null
eval_rubric_id
integer | null
pipeline_id
string | null
limit
integer
default:50
Required range: 1 <= x <= 200
offset
integer
default:0
Required range: x >= 0

Cookies

wos-session
string
access_token
string
datalab_active_team
string

Response

Successful Response

batch_runs
EvalBatchRunResponse · object[]
required
total
integer
required