get
https://api-v2.pandavideo.com.br/aiworkflow/image/
State of an image job: QUEUED, PROCESSING, SUCCESS or ERROR.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
GET /aiworkflow/image/{job_id}
{job_id}Returns the state of an image generation job created by POST /aiworkflow/image.
AuthorizationRequires the account API key in the
Authorizationheader, without theBearerprefix.
HTTP Method & Path
GET /aiworkflow/image/{job_id}
Base URL: https://api-v2.pandavideo.com.br
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
job_id | string | Yes | Identifier 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
| Field | Type | Content |
|---|---|---|
id | string | Job identifier |
status | string | QUEUED, PROCESSING, SUCCESS or ERROR |
storage_path | string | Path of the image in storage. Present once the job reaches SUCCESS |
cdn_base | string | Public base of the image CDN |
error | string | Only present when status is ERROR — describes the failure |
Status cycle
QUEUED → PROCESSING → SUCCESS, or ERROR.
| Status | Meaning |
|---|---|
QUEUED | In the queue |
PROCESSING | Generating |
SUCCESS | Ready — storage_path and cdn_base are filled in |
ERROR | Failed. 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}" 401Missing or invalid API key.
404Job not found.
