Get Video URL
Poll the status of a video generation task and retrieve the final video URL.
Endpoint
Method: GET
URL: https://aiapi.vadoo.tv/api/get_video_url
Request Headers
| Header | Type | Required | Description |
|---|---|---|---|
| X-Api-Key | string | Yes | Your API key |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | The video ID (vid or request_id) returned by generation endpoints. |
Response
If Processing:
{
"status": "processing",
"progress": 45
}
If Completed:
{
"status": "completed",
"url": "https://cdn.vadoo.tv/renders/video_12345.mp4"
}
If Failed:
{
"status": "failed",
"error": "Error message details"
}
Notes
- We recommend polling every 10-15 seconds.
- Most videos under 1 minute are processed within 2-3 minutes.