Vadoo AI API
Welcome to the Vadoo AI API documentation! This guide will help you integrate Vadoo AI's powerful video generation capabilities into your own applications.
Getting Started
To get started, set up your API key and webhook URL. The API key needs to be sent in the header of every API request, and the webhook URL will be used to send the generated video information upon AI video generation completion.
How to generate api key
- Go to https://ai.vadoo.tv/profile
- Click on Generate API Key and copy the generated key.
How to setup webhook url
- Go to https://ai.vadoo.tv/profile
- Input your webhook url and it will be autosaved.
Authentication
All API requests require an API key to be included in the request headers:
X-Api-Key: YOUR_API_KEY
Base URL
The base URL for all API endpoints is:
https://aiapi.vadoo.tv
Webhooks
Some long-running tasks like video generation might take a few minutes. Once a task is completed, Vadoo AI will send a POST request to your configured webhook URL.
The webhook will receive a JSON payload with the following structure:
{
"id": "123456789",
"status": "completed",
"url": "https://cdn.vadoo.tv/video.mp4"
}
You can also provide a webhook parameter in individual API requests to override the default profile webhook for that specific task.