GET Queue
Fetch the queued job's result (or terminal-state payload)
200 with the final result when status is `completed`. 200 with `{status:'failed'|'cancelled', error, ...}` when terminal but unsuccessful (no body retry, just inspect). 202 with the polling payload when still in progress.
Endpoint
get
/v1/queue/requests/{id}Parameters
| Name | In | Required | Description |
|---|---|---|---|
| id | path | Yes | See schema. |
Responses
200
Result or terminal status
202
Still pending/running — keep polling
404
Unknown request_id (or not owned by this API key)