Mixedbread

Delete Parsing Job

DELETE/v1/parsing/jobs/{job_id}

Authorization

Authorizationstringrequired

Bearer token for API authentication. Format: `Bearer YOUR_API_KEY`

Path Parameters

job_idstringrequired

The ID of the parse job to delete

Response Body

idstringrequired

The ID of the deleted job

deletedbooleandefault: true

Whether the job was deleted

objectstringdefault: parsing_job

The type of the object

Request
DELETE/v1/parsing/jobs/{job_id}
from mixedbread import Mixedbread

mxbai = Mixedbread(api_key="YOUR_API_KEY")

response = mxbai.parsing.jobs.delete(job_id="job_xyz789")

print(response)
Response
JSON
{
  "id": "job_xyz789",
  "deleted": true,
  "object": "parsing_job"
}
Last updated: January 7, 2026