list avatars
curl --request GET \
--url https://api-services.podcastor.ai/open/podcast/v1/avatars \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api-services.podcastor.ai/open/podcast/v1/avatars"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api-services.podcastor.ai/open/podcast/v1/avatars', 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-services.podcastor.ai/open/podcast/v1/avatars",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api-services.podcastor.ai/open/podcast/v1/avatars"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-services.podcastor.ai/open/podcast/v1/avatars")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-services.podcastor.ai/open/podcast/v1/avatars")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"cause": "<string>",
"code": 123,
"data": {
"list": [
{
"aspect_ratio": 123,
"avatar_type": "<string>",
"background_id": 123,
"background_url": "<string>",
"id": 123,
"is_demo": true,
"motion_preview_url": "<string>",
"podcast_avatar_id": 123,
"prjUserDigitalPerson1": {
"activity_unique_id": "<string>",
"aigc_photo_from": 123,
"aigc_photo_target": "<string>",
"app_id": "<string>",
"aspect_ratio": 123,
"auth_id": 123,
"auth_status": 123,
"authorization_status": 123,
"avatar_type": "<string>",
"avatar_url": "<string>",
"avatar_x_belong": 123,
"avatar_x_name": "<string>",
"avatar_x_num": 123,
"cover_url": "<string>",
"created_at": 123,
"deleted_at": 123,
"description": "<string>",
"face_center_x": 123,
"face_center_y": 123,
"face_url": "<string>",
"fail_msg": "<string>",
"first_click": 123,
"from_api": true,
"gender": 123,
"h": 123,
"id": 123,
"is_mine": true,
"keying_status": 123,
"keying_video_url": "<string>",
"lang_voice_map": {},
"length": 123,
"make_status": 123,
"mask_url": "<string>",
"motion_unique_id": "<string>",
"name": "<string>",
"operate_feedback": "<string>",
"origin_be_optimize": 123,
"origin_check_face_status": 123,
"origin_type": 123,
"origin_url": "<string>",
"owner_avatar": "<string>",
"owner_nick_name": "<string>",
"person_source": 123,
"photo_library_unique_id": "<string>",
"podcast_typ": 123,
"prefer_model": "<string>",
"preview_mask_url": "<string>",
"preview_url": "<string>",
"product_status": 123,
"progress": 123,
"publish": 123,
"remix_avatar_unique_id": "<string>",
"review_status": 123,
"show_type": "<string>",
"show_type_preset": {
"all": {
"shape": {
"color": "<string>",
"h": 123,
"r": 123,
"type": "<string>",
"w": 123,
"x": 123,
"y": 123
},
"size": {
"h": 123,
"w": 123
}
},
"circle": {
"shape": {
"color": "<string>",
"h": 123,
"r": 123,
"type": "<string>",
"w": 123,
"x": 123,
"y": 123
},
"size": {
"h": 123,
"w": 123
}
}
},
"space_owner_plan_id": 123,
"status": 123,
"third_party_lip": 123,
"timbre_id": 123,
"timbre_name": "<string>",
"typ": 123,
"updated_at": 123,
"voice_clone_status": 123,
"voice_id": "<string>",
"voice_info": {
"age": "<string>",
"gender": "<string>",
"id": 123,
"lang": "<string>",
"name": "<string>",
"preview_url": "<string>",
"type": "<string>",
"unique_id": "<string>"
},
"w": 123,
"webm_url": "<string>",
"welcome_text": "<string>",
"welcome_url": "<string>"
},
"prjUserDigitalPerson2": {
"activity_unique_id": "<string>",
"aigc_photo_from": 123,
"aigc_photo_target": "<string>",
"app_id": "<string>",
"aspect_ratio": 123,
"auth_id": 123,
"auth_status": 123,
"authorization_status": 123,
"avatar_type": "<string>",
"avatar_url": "<string>",
"avatar_x_belong": 123,
"avatar_x_name": "<string>",
"avatar_x_num": 123,
"cover_url": "<string>",
"created_at": 123,
"deleted_at": 123,
"description": "<string>",
"face_center_x": 123,
"face_center_y": 123,
"face_url": "<string>",
"fail_msg": "<string>",
"first_click": 123,
"from_api": true,
"gender": 123,
"h": 123,
"id": 123,
"is_mine": true,
"keying_status": 123,
"keying_video_url": "<string>",
"lang_voice_map": {},
"length": 123,
"make_status": 123,
"mask_url": "<string>",
"motion_unique_id": "<string>",
"name": "<string>",
"operate_feedback": "<string>",
"origin_be_optimize": 123,
"origin_check_face_status": 123,
"origin_type": 123,
"origin_url": "<string>",
"owner_avatar": "<string>",
"owner_nick_name": "<string>",
"person_source": 123,
"photo_library_unique_id": "<string>",
"podcast_typ": 123,
"prefer_model": "<string>",
"preview_mask_url": "<string>",
"preview_url": "<string>",
"product_status": 123,
"progress": 123,
"publish": 123,
"remix_avatar_unique_id": "<string>",
"review_status": 123,
"show_type": "<string>",
"show_type_preset": {
"all": {
"shape": {
"color": "<string>",
"h": 123,
"r": 123,
"type": "<string>",
"w": 123,
"x": 123,
"y": 123
},
"size": {
"h": 123,
"w": 123
}
},
"circle": {
"shape": {
"color": "<string>",
"h": 123,
"r": 123,
"type": "<string>",
"w": 123,
"x": 123,
"y": 123
},
"size": {
"h": 123,
"w": 123
}
}
},
"space_owner_plan_id": 123,
"status": 123,
"third_party_lip": 123,
"timbre_id": 123,
"timbre_name": "<string>",
"typ": 123,
"updated_at": 123,
"voice_clone_status": 123,
"voice_id": "<string>",
"voice_info": {
"age": "<string>",
"gender": "<string>",
"id": 123,
"lang": "<string>",
"name": "<string>",
"preview_url": "<string>",
"type": "<string>",
"unique_id": "<string>"
},
"w": 123,
"webm_url": "<string>",
"welcome_text": "<string>",
"welcome_url": "<string>"
},
"sort": 123,
"status": 123,
"tag": "<string>",
"typ": 123
}
]
},
"details": "<unknown>",
"msg": "<string>",
"rid": "<string>"
}Avatars
List avatars
List public and user Podcast avatars by type.
GET
/
open
/
podcast
/
v1
/
avatars
list avatars
curl --request GET \
--url https://api-services.podcastor.ai/open/podcast/v1/avatars \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api-services.podcastor.ai/open/podcast/v1/avatars"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api-services.podcastor.ai/open/podcast/v1/avatars', 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-services.podcastor.ai/open/podcast/v1/avatars",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api-services.podcastor.ai/open/podcast/v1/avatars"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-services.podcastor.ai/open/podcast/v1/avatars")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-services.podcastor.ai/open/podcast/v1/avatars")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"cause": "<string>",
"code": 123,
"data": {
"list": [
{
"aspect_ratio": 123,
"avatar_type": "<string>",
"background_id": 123,
"background_url": "<string>",
"id": 123,
"is_demo": true,
"motion_preview_url": "<string>",
"podcast_avatar_id": 123,
"prjUserDigitalPerson1": {
"activity_unique_id": "<string>",
"aigc_photo_from": 123,
"aigc_photo_target": "<string>",
"app_id": "<string>",
"aspect_ratio": 123,
"auth_id": 123,
"auth_status": 123,
"authorization_status": 123,
"avatar_type": "<string>",
"avatar_url": "<string>",
"avatar_x_belong": 123,
"avatar_x_name": "<string>",
"avatar_x_num": 123,
"cover_url": "<string>",
"created_at": 123,
"deleted_at": 123,
"description": "<string>",
"face_center_x": 123,
"face_center_y": 123,
"face_url": "<string>",
"fail_msg": "<string>",
"first_click": 123,
"from_api": true,
"gender": 123,
"h": 123,
"id": 123,
"is_mine": true,
"keying_status": 123,
"keying_video_url": "<string>",
"lang_voice_map": {},
"length": 123,
"make_status": 123,
"mask_url": "<string>",
"motion_unique_id": "<string>",
"name": "<string>",
"operate_feedback": "<string>",
"origin_be_optimize": 123,
"origin_check_face_status": 123,
"origin_type": 123,
"origin_url": "<string>",
"owner_avatar": "<string>",
"owner_nick_name": "<string>",
"person_source": 123,
"photo_library_unique_id": "<string>",
"podcast_typ": 123,
"prefer_model": "<string>",
"preview_mask_url": "<string>",
"preview_url": "<string>",
"product_status": 123,
"progress": 123,
"publish": 123,
"remix_avatar_unique_id": "<string>",
"review_status": 123,
"show_type": "<string>",
"show_type_preset": {
"all": {
"shape": {
"color": "<string>",
"h": 123,
"r": 123,
"type": "<string>",
"w": 123,
"x": 123,
"y": 123
},
"size": {
"h": 123,
"w": 123
}
},
"circle": {
"shape": {
"color": "<string>",
"h": 123,
"r": 123,
"type": "<string>",
"w": 123,
"x": 123,
"y": 123
},
"size": {
"h": 123,
"w": 123
}
}
},
"space_owner_plan_id": 123,
"status": 123,
"third_party_lip": 123,
"timbre_id": 123,
"timbre_name": "<string>",
"typ": 123,
"updated_at": 123,
"voice_clone_status": 123,
"voice_id": "<string>",
"voice_info": {
"age": "<string>",
"gender": "<string>",
"id": 123,
"lang": "<string>",
"name": "<string>",
"preview_url": "<string>",
"type": "<string>",
"unique_id": "<string>"
},
"w": 123,
"webm_url": "<string>",
"welcome_text": "<string>",
"welcome_url": "<string>"
},
"prjUserDigitalPerson2": {
"activity_unique_id": "<string>",
"aigc_photo_from": 123,
"aigc_photo_target": "<string>",
"app_id": "<string>",
"aspect_ratio": 123,
"auth_id": 123,
"auth_status": 123,
"authorization_status": 123,
"avatar_type": "<string>",
"avatar_url": "<string>",
"avatar_x_belong": 123,
"avatar_x_name": "<string>",
"avatar_x_num": 123,
"cover_url": "<string>",
"created_at": 123,
"deleted_at": 123,
"description": "<string>",
"face_center_x": 123,
"face_center_y": 123,
"face_url": "<string>",
"fail_msg": "<string>",
"first_click": 123,
"from_api": true,
"gender": 123,
"h": 123,
"id": 123,
"is_mine": true,
"keying_status": 123,
"keying_video_url": "<string>",
"lang_voice_map": {},
"length": 123,
"make_status": 123,
"mask_url": "<string>",
"motion_unique_id": "<string>",
"name": "<string>",
"operate_feedback": "<string>",
"origin_be_optimize": 123,
"origin_check_face_status": 123,
"origin_type": 123,
"origin_url": "<string>",
"owner_avatar": "<string>",
"owner_nick_name": "<string>",
"person_source": 123,
"photo_library_unique_id": "<string>",
"podcast_typ": 123,
"prefer_model": "<string>",
"preview_mask_url": "<string>",
"preview_url": "<string>",
"product_status": 123,
"progress": 123,
"publish": 123,
"remix_avatar_unique_id": "<string>",
"review_status": 123,
"show_type": "<string>",
"show_type_preset": {
"all": {
"shape": {
"color": "<string>",
"h": 123,
"r": 123,
"type": "<string>",
"w": 123,
"x": 123,
"y": 123
},
"size": {
"h": 123,
"w": 123
}
},
"circle": {
"shape": {
"color": "<string>",
"h": 123,
"r": 123,
"type": "<string>",
"w": 123,
"x": 123,
"y": 123
},
"size": {
"h": 123,
"w": 123
}
}
},
"space_owner_plan_id": 123,
"status": 123,
"third_party_lip": 123,
"timbre_id": 123,
"timbre_name": "<string>",
"typ": 123,
"updated_at": 123,
"voice_clone_status": 123,
"voice_id": "<string>",
"voice_info": {
"age": "<string>",
"gender": "<string>",
"id": 123,
"lang": "<string>",
"name": "<string>",
"preview_url": "<string>",
"type": "<string>",
"unique_id": "<string>"
},
"w": 123,
"webm_url": "<string>",
"welcome_text": "<string>",
"welcome_url": "<string>"
},
"sort": 123,
"status": 123,
"tag": "<string>",
"typ": 123
}
]
},
"details": "<unknown>",
"msg": "<string>",
"rid": "<string>"
}MCP tool:
podcast_list_avatars. OAuth scope: asset.read.