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

Get eval group

GET
/v1/eval/group/:groupId
GET
/v1/eval/group/:groupId
$curl https://api.runtype.com/v1/eval/group/groupId \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "batches": [
3 {
4 "batchId": "batch_9f8d7c6a",
5 "createdAt": "2024-06-10T12:45:00Z",
6 "evalCount": 25,
7 "status": "completed",
8 "metrics": {
9 "accuracy": 0.92,
10 "f1Score": 0.89
11 }
12 }
13 ],
14 "evalGroupId": "group_4a7b9e2c",
15 "totalEvals": 25
16}
Get all eval batches in a group for comparison.
Was this page helpful?
Previous

Stream eval execution

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Path parameters

groupIdstringRequired
Eval group ID

Response

Eval group returned
batcheslist of objects
evalGroupIdstring
totalEvalsdouble

Errors

401
Unauthorized Error
404
Not Found Error
500
Internal Server Error