Skip to main content
GET
/
api
/
eval
/
jobs
/
{job_id}
curl -X GET "https://api.usesynth.ai/api/eval/jobs/{job_id}" \
  -H "Authorization: Bearer $SYNTH_API_KEY"
{
  "job_id": "eval-abc123",
  "status": "completed",
  "created_at": "2025-01-15T10:00:00Z",
  "completed_at": "2025-01-15T10:05:30Z",
  "results": {
    "mean_reward": 0.92,
    "total_tokens": 750,
    "total_cost_usd": 0.01
  }
}
Fetch the current status of an eval job.
job_id
string
required
Eval job ID.
curl -X GET "https://api.usesynth.ai/api/eval/jobs/{job_id}" \
  -H "Authorization: Bearer $SYNTH_API_KEY"
{
  "job_id": "eval-abc123",
  "status": "completed",
  "created_at": "2025-01-15T10:00:00Z",
  "completed_at": "2025-01-15T10:05:30Z",
  "results": {
    "mean_reward": 0.92,
    "total_tokens": 750,
    "total_cost_usd": 0.01
  }
}