Skip to main content
GET
/
jobs
/
{id}
Get Job
curl --request GET \
  --url https://v1.api.flux-os.com/jobs/{id} \
  --header 'x-api-key: <api-key>' \
  --header 'x-user-id: <api-key>'
{
  "data": {
    "queue_name": "<string>",
    "queue_function": "<string>",
    "type": "T",
    "id": "<string>",
    "status": "QUEUED",
    "enqueued_at": "2023-11-07T05:31:56Z",
    "started_at": null,
    "finished_at": null,
    "input_data": null,
    "output_data": null
  }
}

Authorizations

x-api-key
string
header
required
x-user-id
string
header
required

Path Parameters

id
integer
required

The job ID.

Response

A single job.

data
object