Get started with the Flowmatic API in minutes
curl -X POST https://api.flowmatic.studio/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/generateGenerate a video from content
| Name | Type | Required | Description |
|---|---|---|---|
script | string | Yes | Text script for the video |
voice_id | string | Yes | AI voice ID to use for narration |
caption_style | string | No | Caption style (default: "minimal") |
webhook_url | string | No | URL for completion notifications |
/api/v1/jobs/{job_id}Get video generation job status
| Name | Type | Required | Description |
|---|---|---|---|
job_id | string | Yes | Job ID returned from generate endpoint |
/api/v1/languagesList supported languages
/api/v1/webhooksConfigure webhook endpoints
| Name | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Webhook URL |
events | array | Yes | Events to subscribe to |
Get real-time notifications when your videos are generated.
Secure API access with Bearer token authentication.
Official SDKs and tools for faster integration.