curl --request POST \
--url https://api.viddyscribe.com/enterprise/api/generate_ad_audio \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"input": {
"type": "media_id",
"media_id": "550e8400-e29b-41d4-a716-446655440000"
},
"generation_config": {
"language": "en-US",
"voice": "Achernar"
}
}
'{
"job_id": "task_abc123xyz",
"status": "queued",
"media_id": "550e8400-e29b-41d4-a716-446655440000"
}Generate an audio-only track with Audio Descriptions.
Supports Input via media_id, url, or direct file upload.
Returns a job_id for tracking progress.
curl --request POST \
--url https://api.viddyscribe.com/enterprise/api/generate_ad_audio \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"input": {
"type": "media_id",
"media_id": "550e8400-e29b-41d4-a716-446655440000"
},
"generation_config": {
"language": "en-US",
"voice": "Achernar"
}
}
'{
"job_id": "task_abc123xyz",
"status": "queued",
"media_id": "550e8400-e29b-41d4-a716-446655440000"
}media_id, use this method.
curl -X POST https://api.viddyscribe.com/enterprise/api/generate_ad_audio \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"type": "media_id",
"media_id": "550e8400-e29b-41d4-a716-446655440000"
},
"generation_config": {
"language": "en-US"
}
}'
curl -X POST https://api.viddyscribe.com/enterprise/api/generate_ad_audio \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"type": "url",
"url": "https://example.com/video.mp4"
},
"generation_config": {
"language": "en-US"
}
}'
curl -X POST https://api.viddyscribe.com/enterprise/api/generate_ad_audio \
-H "X-API-Key: YOUR_API_KEY" \
-F 'input={"type": "file"}' \
-F "file=@/path/to/video.mp4" \
-F 'generation_config={"language": "en-US"}'
API key for authentication. Obtain from your team admin.
Example: X-API-Key: vsk_abc123def456ghi789jkl012mno345pqr678stu901vwx234yz
Configuration for audio generation
Show child attributes
Target language (BCP-47)
Provides better audio descriptions with a selected category of the video
Voice style to use for narration
Custom prompt for AI
Custom EDL/Script content (skips AI generation)