For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
User GuideDeveloper GuidesAPI Reference
User GuideDeveloper GuidesAPI Reference
    • Overview
  • Runtype API
      • POSTAnalyze step results
      • GETList eval batches
      • POSTCompare evals
      • POSTCompare record across evals
      • GETGet eval group
      • STREAMStream eval execution
      • POSTSubmit eval
      • GETGet eval results
Dashboard
LogoLogo
Runtype APIEvals

List eval batches

GET
/v1/eval/batches
GET
/v1/eval/batches
$curl https://api.runtype.com/v1/eval/batches \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "batches": [
3 {
4 "id": "batch_123abc456def",
5 "createdAt": "2024-06-10T12:00:00Z",
6 "status": "completed",
7 "name": "Image Classification Eval Batch",
8 "modelVersion": "v2.3.1",
9 "totalEvaluations": 150,
10 "completedEvaluations": 150,
11 "failedEvaluations": 0
12 }
13 ],
14 "count": 1,
15 "limit": 50,
16 "offset": 0
17}
List all eval batches for the current user with optional filtering and pagination.
Was this page helpful?
Previous

Compare evals

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Query parameters

limitstringOptional

Number of results (default 50, max 100)

offsetstringOptional
Pagination offset
statusstringOptional

Filter by status (queued|processing|completed|failed)

Response

Eval batches returned
batcheslist of objects
countdouble
limitdouble
offsetdouble

Errors

401
Unauthorized Error
500
Internal Server Error