journeyapi.devDocs
API reference

Retrieve a job

Read the current state of one job.

GET/v1/jobs/{job_id}

Returns the full job object. Safe to poll once a second; reads do not count against your generation concurrency.

Path

job_idstringrequired
The job identifier.
Request
curl https://api.journeyapi.dev/v1/jobs/job_01HQ8VZ3K9XM2P \
  -H "Authorization: Bearer $JOURNEY_API_KEY"
Response · 200 OK
{
  "id": "job_01HQ8VZ3K9XM2P",
  "object": "job",
  "type": "image",
  "status": "succeeded",
  "progress": 100,
  "model": "image-2",
  "prompt": "a lighthouse on a basalt cliff, fog, long exposure",
  "params": {
    "n": 2,
    "aspect_ratio": "3:2",
    "style_strength": 35,
    "detail": "standard",
    "seed": 3064958390
  },
  "images": [
    {
      "id": "img_01HQ8VZ4T2B7MC",
      "url": "https://cdn.journeyapi.dev/i/01HQ8VZ4T2B7MC.png",
      "width": 1456,
      "height": 972
    },
    {
      "id": "img_01HQ8VZ4T2B7MD",
      "url": "https://cdn.journeyapi.dev/i/01HQ8VZ4T2B7MD.png",
      "width": 1456,
      "height": 972
    }
  ],
  "cost_usd": 0.10,
  "created_at": "2026-09-18T09:14:02Z",
  "completed_at": "2026-09-18T09:14:11Z"
}