Get AI Image Job Status

State of an image job: QUEUED, PROCESSING, SUCCESS or ERROR.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

GET /aiworkflow/image/{job_id}

Returns the state of an image generation job created by POST /aiworkflow/image.

📘

Authorization

Requires the account API key in the Authorization header, without the Bearer prefix.

HTTP Method & Path

GET /aiworkflow/image/{job_id}

Base URL: https://api-v2.pandavideo.com.br

Path Parameters

ParameterTypeRequiredDescription
job_idstringYesIdentifier returned by POST /aiworkflow/image

Response

Success Response (200)

{
  "id": "{job_id}",
  "status": "SUCCESS",
  "storage_path": "USER_ID/ai_abstract_image/{uuid}.jpeg",
  "cdn_base": "https://images-cdn.pandavideo.com"
}

Response Schema

FieldTypeContent
idstringJob identifier
statusstringQUEUED, PROCESSING, SUCCESS or ERROR
storage_pathstringPath of the image in storage. Present once the job reaches SUCCESS
cdn_basestringPublic base of the image CDN
errorstringOnly present when status is ERROR — describes the failure

Status cycle

QUEUEDPROCESSINGSUCCESS, or ERROR.

StatusMeaning
QUEUEDIn the queue
PROCESSINGGenerating
SUCCESSReady — storage_path and cdn_base are filled in
ERRORFailed. The response carries an error field and the credit is refunded

Building the image URL

The response does not carry the final URL. Join the two parts:

{cdn_base}/{storage_path}

In the example above: https://images-cdn.pandavideo.com/USER_ID/ai_abstract_image/{uuid}.jpeg

It is the same pair of fields that appears in images[] inside the per-language resource file — see Get Mind Map, eBook or Quiz.

⚠️

A few seconds between checks is enough. Aggressive polling does not move the queue faster.

Error Responses

  • 401: missing or invalid API key.
  • 404: job not found (or it belongs to another organization).
  • 500: internal error.

Example Usage

cURL

curl -X GET "https://api-v2.pandavideo.com.br/aiworkflow/image/{job_id}" \
  -H "Authorization: {api_key}"
Path Params
string
required

Job identifier returned by POST /aiworkflow/image.

Responses

401

Missing or invalid API key.

404

Job not found.

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json