Skip to main content
GET
/
api
/
generative-jobs
/
{jobId}
Get a generative job
curl --request GET \
  --url https://api.opus.pro/api/generative-jobs/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "result": {
    "generatedThumbnailUris": [
      "<string>"
    ]
  },
  "progress": {
    "percentage": 0.5
  },
  "error": {
    "type": "<string>",
    "message": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://help.opus.pro/llms.txt

Use this file to discover all available pages before exploring further.

Experimental. Polling cadence: client-driven; respect rate limits.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

jobId
string
required

The jobId returned by POST /api/generative-jobs.

Response

200 - application/json
status
enum<string>
required

The job status.

Available options:
QUEUED,
PROCESSING,
CONCLUDED,
FAILED,
UNKNOWN
result
object

Present when status is CONCLUDED and the job produced output.

progress
object

Present while the job is QUEUED or PROCESSING, and on CONCLUDED as a final snapshot.

error
object

Present when status is FAILED or when result extraction failed for a CONCLUDED job.