Skip to content
Primary navigation

Delete eval run

DELETE/evals/{eval_id}/runs/{run_id}

Delete an eval run.

Path ParametersExpand Collapse
eval_id: string
run_id: string
ReturnsExpand Collapse
deleted: optional boolean
object: optional string
run_id: optional string

Delete eval run

curl https://api.openai.com/v1/evals/eval_123abc/runs/evalrun_abc456 \
  -X DELETE \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json"
{
  "object": "eval.run.deleted",
  "deleted": true,
  "run_id": "evalrun_abc456"
}
Returns Examples
{
  "object": "eval.run.deleted",
  "deleted": true,
  "run_id": "evalrun_abc456"
}