v5

latestOpenAPI 3.1.0MIT2026-08-04194460796.1 KB
evaluation

Get all evaluation jobs

get/evaluation

Query parameters

statusstring

Filter evaluation jobs by status

limitinteger

Limit the number of results

Response

evaluation jobs retrieved successfully

workflow_idstring

The evaluation job ID

type'classify' | 'score' | 'compare'

The type of evaluation

owner_idstring

ID of the job owner (admin only)

status'pending' | 'queued' | 'running' | 'completed' | 'error' | 'user_error'

Current status of the job

parametersobject

The parameters used for this evaluation

created_atstring date-time

When the job was created

updated_atstring date-time

When the job was last updated

Example response

[
  {
    "workflow_id": "eval-1234aedf",
    "type": "classify",
    "status": "completed",
    "status_updates": [
      {
        "status": "pending",
        "message": "Job is pending evaluation",
        "timestamp": "2025-07-23T17:10:04.837888Z"
      }
    ],
    "created_at": "2025-07-23T17:10:04.837888Z",
    "updated_at": "2025-07-23T17:10:04.837888Z",
    "results": {
      "result_file_id": "file-1234-aefd",
      "pass_percentage": 10,
      "label_counts": "{\"yes\": 10, \"no\": 0}"
    }
  }
]