Returns the current state of an async job. Status values: pending, started, completed, failed.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string (path) | yes | — | Job ID returned from any async endpoint. |
Request
curl https://api.datasonar.dev/v1/jobs/c5584f4b-... \
-H "Authorization: Bearer osk_..." Response
{
"job_id": "c5584f4b-...",
"status": "completed",
"result": { ... }
}