Text
Get status and results of an asynchronous text job
Poll the status and retrieve results of an asynchronous text processing job by ID. ### Lifecycle Statuses - `pending`: Queued in the broker waiting for an available LLM worker. - `processing`: Actively being chunked and processed by the model. - `completed`: Successfully finished. Output text is available in `result` (and `result_structured` if structured summary). - `failed`: Job encountered an unrecoverable error; see `error` field for diagnosis.
GET
/
api/v1/text/jobs/{job_id}Authorization
AuthorizationRequiredBearer <token>
In: header
Path Parameters
job_idRequiredJob Id
Unique integer ID of the text job
Minimum:
1Job details and current status returned successfully.