language to choose the language of failure messages.
Quick start
When submitting a task, addwebhook at the top level of the request body. To translate failure messages, also add language:
your URL + /callback.
Other async task endpoints (video, audio, etc.) use
webhook in the same way. language currently applies to POST /v1/videos/generations and POST /v1/images/generations; both fields belong at the top level of the request body.Choose the error message language
language is an optional string parameter that only affects error.message in failure callbacks. Task IDs, status, progress, cost, and result URLs do not change with the language. If omitted, the original error message from the upstream provider or platform is returned.
- Values are case-insensitive, and surrounding whitespace is trimmed. For example,
"EN"and" en "are both treated asen. - Use the two-letter codes in the table. Regional tags such as
zh-CN,en-US, andpt-BRare not recognized. - Unsupported values do not cause task submission to fail; the callback keeps the original error message.
- If the original message is already in the target language, it is returned unchanged instead of being translated again.
- If translation fails, the original message is returned without delaying or dropping the callback.
When polling, use the
language query parameter on the task status endpoint to choose the same error message language. A webhook has no query string, so language must be specified when submitting the task.URL rules
Thewebhook you provide is the base URL, and we automatically append /callback:
So your server needs an endpoint that accepts
POST .../callback.
What you’ll receive
The pushed payload is exactly the same as what the “Get Task Status” endpoint returns — you can process it with the same parsing logic.For video tasks the result is in
result.videos, and for audio in result.audios.The failure example above uses
"language": "en". The language parameter only changes error.message; all other fields remain the same.Retries and deduplication (important)
- Retries: If your server doesn’t return
2xxwithin about 10 seconds, or returns5xx, we’ll retry automatically, up to 3 times, at intervals of roughly 10s, 30s, and 60s. If all 3 fail we give up (within about 2 minutes). - No retry: If your endpoint returns
4xx(treated as a bad URL / request), we give up immediately without retrying. - Deduplication: Normally a task is pushed only once. But in extreme cases (e.g. a restart on our side after sending but before confirmation) you may receive duplicate pushes. Be sure to deduplicate idempotently by
id(task_id) to avoid double-processing.
1
Return 2xx as soon as possible
Accept and enqueue first, then process asynchronously — don’t make us wait for your processing to finish.
2
Deduplicate by id
Use
id (task_id) as the idempotency key to avoid double-processing.3
Configure and verify the signature
In production, verify the origin of callback requests and reject forged ones.
Requirements for the callback URL
For security, the callback URL must meet the following:
URLs that don’t meet these requirements are dropped (no push, no retry).
FAQ
I submitted a task with a webhook but didn't receive a push?
I submitted a task with a webhook but didn't receive a push?
Check the following one by one:
- Did the task actually finish? Check the task details — is
statuscompleted/failed(no push while processing)? - Is your URL publicly accessible? Can we reach your
/callback? - Is the port a standard port (80 / 443)? Non-standard ports may be blocked by security policies.
- Did your
/callbackreturn 2xx promptly? Returning 4xx is given up immediately. - Are you using
https? Is the certificate valid?
Why is url in the result an array?
Why is url in the result an array?
Some models produce multiple images at once, so
images[].url may be an array — just handle it as an array.Do result links expire?
Do result links expire?
If
result includes expires_at (a Unix timestamp), it indicates the link’s expiration time — transfer/store it promptly.Do you push the 'processing' status?
Do you push the 'processing' status?
No. We only push once, when the task finally succeeds or fails.
Minimal receiver example
Python
200 as soon as possible, and run your processing logic asynchronously in the background.