Get started with the Vidigo API in minutes
curl -X POST https://api.vidigo.com/v1/translate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"video_url": "https://example.com/video.mp4",
"target_language": "es",
"voice_clone": true,
"webhook_url": "https://yourapp.com/webhook"
}'
Complete reference for all available endpoints
/api/v1/translate
Submit a video for translation
Name | Type | Required | Description |
---|---|---|---|
video_url | string | Yes | URL of the video to translate |
target_language | string | Yes | Target language code (e.g., "es", "fr") |
voice_clone | boolean | No | Enable voice cloning (default: true) |
webhook_url | string | No | URL for completion notifications |
/api/v1/jobs/{job_id}
Get translation job status
Name | Type | Required | Description |
---|---|---|---|
job_id | string | Yes | Job ID returned from translate endpoint |
/api/v1/languages
List supported languages
/api/v1/webhooks
Configure webhook endpoints
Name | Type | Required | Description |
---|---|---|---|
url | string | Yes | Webhook URL |
events | array | Yes | Events to subscribe to |
Get real-time notifications when your translations are complete.
Secure API access with Bearer token authentication.
Official SDKs and tools for faster integration.