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

Documentation Index

Fetch the complete documentation index at: https://docs.archetypeai.app/llms.txt

Use this file to discover all available pages before exploring further.

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

The response body is empty when the deletion succeeds.
curl -X DELETE https://api.u1.archetypeai.app/v0.5/fine-tune/jobs/ftj-my-finetune-run-3de60a5c \
  -H "Authorization: Bearer $ATAI_API_KEY"
{}