api referenceGET
DELETE
Jobs
Poll the status of an enqueued query run, or cancel it.
GET/api/jobs/{id}
Poll a job's status. The job id is an opaque, unguessable string minted at enqueue time and is itself the access control — there's no listing endpoint.
Response
{
"job": { "id": "9001", "status": 3, "query_result_id": 501, "error": null }
}DELETE/api/jobs/{id}
Request cancellation (best-effort — a job already finishing may not actually stop). Returns 204.