Get Character Image
Poll the status of a character image generation task and retrieve the final image URL.
Endpoint
Method: GET
URL: https://aiapi.vadoo.tv/api/get_character_image
Request Headers
| Header | Type | Required | Description |
|---|---|---|---|
| X-Api-Key | string | Yes | Your API key |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | The Image ID returned by the generation endpoint. |
Response
If Completed:
{
"status": "completed",
"url": "https://cdn.vadoo.tv/ai-images/user/id/image.png"
}
If Processing:
{
"status": "in_progress",
"url": ""
}
If Failed:
{
"status": "failed",
"url": ""
}