v3

OpenAPI 3.1.0MIT2026-07-31192456807.8 KB
evaluation

Get evaluation job details

get/evaluation/{id}

Path parameters

idstring required

The ID of the evaluation job to retrieve

Response

Evaluation job details 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}"
  }
}