Skip to main content
DELETE
/
fine-tune
/
jobs
/
{job_id}
curl -X DELETE https://api.u1.archetypeai.app/v0.5/fine-tune/jobs/ft-job-my-finetune-run-3de60a5c \
  -H "Authorization: Bearer $ATAI_API_KEY"
null

Overview

This endpoint deletes a fine-tune job from the authenticated organization, removing it from the list of available jobs. A successful delete returns an empty response body with HTTP 200.
Deleting a job that is still running does not gracefully stop it. Call Stop Job or Cancel Job first if you need the job to wind down cleanly.

Path Parameters

job_id
string
required
Identifier of the job to delete (1–64 characters)

Response

A successful deletion returns null as the response body.
curl -X DELETE https://api.u1.archetypeai.app/v0.5/fine-tune/jobs/ft-job-my-finetune-run-3de60a5c \
  -H "Authorization: Bearer $ATAI_API_KEY"
null