v1
latestOpenAPI 3.0.1MIT2026-07-2638658.5 KBVideo
Create talking avatar video
Create a video with talking avatar using script or audio input. Either provide a script for text-to-speech or upload an audio file.
post/v2/create_video_from_avatar
Request body
Example request
{
"avatar": {
"avatar_id": 81
},
"voice": {
"type": "script",
"script": "Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!",
"audio_url": "https://res.jogg.ai/audio.mp3",
"voice_id": "en-US-ChristopherNeural"
},
"aspect_ratio": "portrait",
"screen_style": 1,
"caption": true,
"webhook_url": "https://example.com/webhook",
"video_name": "My Talking Avatar Video"
}Response
Success
Example response
{
"msg": "Success",
"data": {
"video_id": "video_123456"
}
}