Skip to main content

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

HeaderTypeRequiredDescription
X-Api-KeystringYesYour API key

Query Parameters

ParameterTypeRequiredDescription
idstringYesThe 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.