curl --request POST \
--url https://api.jogg.ai/v1/create_video_from_talking_avatar \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"screen_style": 1,
"avatar_id": 81,
"avatar_type": 0,
"voice_id": "en-US-ChristopherNeural",
"script": "Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!",
"audio_url": "https://res.jogg.ai/audio.mp3",
"aspect_ratio": 0,
"caption": true,
"video_name": "My Video"
}
'import requests
url = "https://api.jogg.ai/v1/create_video_from_talking_avatar"
payload = {
"screen_style": 1,
"avatar_id": 81,
"avatar_type": 0,
"voice_id": "en-US-ChristopherNeural",
"script": "Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!",
"audio_url": "https://res.jogg.ai/audio.mp3",
"aspect_ratio": 0,
"caption": True,
"video_name": "My Video"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
screen_style: 1,
avatar_id: 81,
avatar_type: 0,
voice_id: 'en-US-ChristopherNeural',
script: 'Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!',
audio_url: 'https://res.jogg.ai/audio.mp3',
aspect_ratio: 0,
caption: true,
video_name: 'My Video'
})
};
fetch('https://api.jogg.ai/v1/create_video_from_talking_avatar', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.jogg.ai/v1/create_video_from_talking_avatar",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'screen_style' => 1,
'avatar_id' => 81,
'avatar_type' => 0,
'voice_id' => 'en-US-ChristopherNeural',
'script' => 'Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!',
'audio_url' => 'https://res.jogg.ai/audio.mp3',
'aspect_ratio' => 0,
'caption' => true,
'video_name' => 'My Video'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.jogg.ai/v1/create_video_from_talking_avatar"
payload := strings.NewReader("{\n \"screen_style\": 1,\n \"avatar_id\": 81,\n \"avatar_type\": 0,\n \"voice_id\": \"en-US-ChristopherNeural\",\n \"script\": \"Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!\",\n \"audio_url\": \"https://res.jogg.ai/audio.mp3\",\n \"aspect_ratio\": 0,\n \"caption\": true,\n \"video_name\": \"My Video\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.jogg.ai/v1/create_video_from_talking_avatar")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"screen_style\": 1,\n \"avatar_id\": 81,\n \"avatar_type\": 0,\n \"voice_id\": \"en-US-ChristopherNeural\",\n \"script\": \"Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!\",\n \"audio_url\": \"https://res.jogg.ai/audio.mp3\",\n \"aspect_ratio\": 0,\n \"caption\": true,\n \"video_name\": \"My Video\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.jogg.ai/v1/create_video_from_talking_avatar")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"screen_style\": 1,\n \"avatar_id\": 81,\n \"avatar_type\": 0,\n \"voice_id\": \"en-US-ChristopherNeural\",\n \"script\": \"Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!\",\n \"audio_url\": \"https://res.jogg.ai/audio.mp3\",\n \"aspect_ratio\": 0,\n \"caption\": true,\n \"video_name\": \"My Video\"\n}"
response = http.request(request)
puts response.read_body{
"code": 123,
"msg": "<string>",
"data": {
"project_id": 123
}
}Create Talking Avatar Videos
Creates a talking avatar video with specified parameters
curl --request POST \
--url https://api.jogg.ai/v1/create_video_from_talking_avatar \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"screen_style": 1,
"avatar_id": 81,
"avatar_type": 0,
"voice_id": "en-US-ChristopherNeural",
"script": "Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!",
"audio_url": "https://res.jogg.ai/audio.mp3",
"aspect_ratio": 0,
"caption": true,
"video_name": "My Video"
}
'import requests
url = "https://api.jogg.ai/v1/create_video_from_talking_avatar"
payload = {
"screen_style": 1,
"avatar_id": 81,
"avatar_type": 0,
"voice_id": "en-US-ChristopherNeural",
"script": "Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!",
"audio_url": "https://res.jogg.ai/audio.mp3",
"aspect_ratio": 0,
"caption": True,
"video_name": "My Video"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
screen_style: 1,
avatar_id: 81,
avatar_type: 0,
voice_id: 'en-US-ChristopherNeural',
script: 'Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!',
audio_url: 'https://res.jogg.ai/audio.mp3',
aspect_ratio: 0,
caption: true,
video_name: 'My Video'
})
};
fetch('https://api.jogg.ai/v1/create_video_from_talking_avatar', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.jogg.ai/v1/create_video_from_talking_avatar",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'screen_style' => 1,
'avatar_id' => 81,
'avatar_type' => 0,
'voice_id' => 'en-US-ChristopherNeural',
'script' => 'Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!',
'audio_url' => 'https://res.jogg.ai/audio.mp3',
'aspect_ratio' => 0,
'caption' => true,
'video_name' => 'My Video'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.jogg.ai/v1/create_video_from_talking_avatar"
payload := strings.NewReader("{\n \"screen_style\": 1,\n \"avatar_id\": 81,\n \"avatar_type\": 0,\n \"voice_id\": \"en-US-ChristopherNeural\",\n \"script\": \"Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!\",\n \"audio_url\": \"https://res.jogg.ai/audio.mp3\",\n \"aspect_ratio\": 0,\n \"caption\": true,\n \"video_name\": \"My Video\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.jogg.ai/v1/create_video_from_talking_avatar")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"screen_style\": 1,\n \"avatar_id\": 81,\n \"avatar_type\": 0,\n \"voice_id\": \"en-US-ChristopherNeural\",\n \"script\": \"Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!\",\n \"audio_url\": \"https://res.jogg.ai/audio.mp3\",\n \"aspect_ratio\": 0,\n \"caption\": true,\n \"video_name\": \"My Video\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.jogg.ai/v1/create_video_from_talking_avatar")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"screen_style\": 1,\n \"avatar_id\": 81,\n \"avatar_type\": 0,\n \"voice_id\": \"en-US-ChristopherNeural\",\n \"script\": \"Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!\",\n \"audio_url\": \"https://res.jogg.ai/audio.mp3\",\n \"aspect_ratio\": 0,\n \"caption\": true,\n \"video_name\": \"My Video\"\n}"
response = http.request(request)
puts response.read_body{
"code": 123,
"msg": "<string>",
"data": {
"project_id": 123
}
}Authorizations
Body
Background style. 1: with background, 2: green screen, 3: webm
1, 2, 3 1
ID of the avatar to use
81
Source type of the avatar. 0: jogg avatar, 1: your avatar
0, 1 0
ID of the text-to-speech voice to use
"en-US-ChristopherNeural"
Script content for the avatar to speak. Must provide either script or audio_script
"Hi, welcome to JoggAI and create longer videos with Talking Avatars in minutes!"
Url for Audio, either script or audio_url must be provided, but not both.
"https://res.jogg.ai/audio.mp3"
Aspect ratio of the output video. 0: [9:16], 1: [16:9], 2: [1:1]
0, 1, 2 0
Subtitle option. true: enable subtitles, false: disable subtitles
If you want to specify the name of the generated video, please use this parameter.
true, false "My Video"
Response
Success

