OpenAI API DocsCommunity translation · Official structure

Resources

Evals — Delete

OpenAI API endpoint method reference.

English source
This English page is rendered from the official Markdown mirror in this repository.View on OpenAI ↗

For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.

Delete an eval

delete /evals/{eval_id}

Delete an evaluation.

Path Parameters

  • eval_id: string

Returns

  • deleted: boolean

  • eval_id: string

  • object: string

Example

curl https://api.openai.com/v1/evals/$EVAL_ID \
    -X DELETE \
    -H "Authorization: Bearer $OPENAI_API_KEY"

Response

{
  "deleted": true,
  "eval_id": "eval_abc123",
  "object": "eval.deleted"
}

Example

curl https://api.openai.com/v1/evals/eval_abc123 \
  -X DELETE \
  -H "Authorization: Bearer $OPENAI_API_KEY"

Response

{
  "object": "eval.deleted",
  "deleted": true,
  "eval_id": "eval_abc123"
}