Delete a fine-tuned model

DELETEhttps:/api.openai.com/v1/models/{model}

Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.

Path parameters

  • model
    string
    Required
    The model to delete

Response

Deletion status.

Example request
1
curl https://api.openai.com/v1/models/ft:gpt-4o-mini:acemeco:suffix:abc123 \
2
-X DELETE \
3
-H "Authorization: Bearer $OPENAI_API_KEY"
Example response
1
{
2
"id": "ft:gpt-4o-mini:acemeco:suffix:abc123",
3
"object": "model",
4
"deleted": true
5
}
Built with