get project
curl --request GET \
--url https://api-services.podcastor.ai/open/podcast/v1/project \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api-services.podcastor.ai/open/podcast/v1/project"
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/project', 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/project",
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/project"
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/project")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-services.podcastor.ai/open/podcast/v1/project")
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": {
"a_id": 123,
"aspect_ratio": 123,
"attachments": [
{
"id": "<string>",
"type": "<string>",
"url": "<string>"
}
],
"audio_enhancement_enabled": true,
"avatar_type": "<string>",
"avatar_x_flag": "<string>",
"comment": {
"create_time": 123,
"data_id": "<string>",
"data_type": "<string>",
"feedback": "<string>",
"feedback_tag": [
"<string>"
],
"id": 123,
"rating": "<string>",
"uid": 123,
"update_time": 123
},
"copy_from": 123,
"cover_path": "<string>",
"cover_url": "<string>",
"create_from": 123,
"created_at": 123,
"digital_human_all_in_one_task_id": "<string>",
"err_code": "<string>",
"err_msg": "<string>",
"estimated_wait_time": 123,
"first_subtitle2_layer": {
"alpha": 123,
"api_template_meta": {
"replace_key": "<string>"
},
"color": "<string>",
"crop": {
"h": 123,
"w": 123,
"x": 123,
"y": 123
},
"fit_mode": "<string>",
"flip": "<string>",
"gauss": 123,
"h": 123,
"key": "<string>",
"mode": "<string>",
"moving_camera": {
"type": "<string>"
},
"path": "<string>",
"person_cover": "<string>",
"person_preview_url": "<string>",
"preview_path": "<string>",
"prop": {
"animationInfo": {
"cycle": {
"duration": 123,
"effectType": "<string>"
},
"enter": {
"duration": 123,
"effectType": "<string>"
},
"leave": {
"duration": 123,
"effectType": "<string>"
}
},
"audioPath": "<string>",
"bg_transparent": true,
"clip": {
"end": 123,
"start": 123
},
"emotion": {
"cover": "<string>",
"id": 123,
"name": "<string>",
"preview_transparent_video": "<string>",
"preview_video": "<string>"
},
"meta": {
"cover": "<string>",
"id": 123,
"name": "<string>",
"origin_height": 123,
"origin_width": 123,
"person_source": 123,
"playback_type": "<string>",
"preview_transparent_video": "<string>",
"preview_video": "<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
}
}
},
"sub_type": "<string>",
"tts_url": "<string>",
"type": "<string>"
},
"play_mode": "<string>",
"renderScale": 123,
"shapeInfo": {
"color": "<string>",
"html": "<string>",
"strokeColor": "<string>",
"strokeType": "<string>",
"strokeWidth": 123,
"type": "<string>"
},
"show_type": "<string>",
"templateInfo": {},
"textConfig": {
"align": "<string>",
"background": {},
"color": "<string>",
"fontFamily": {},
"fontSize": 123,
"fontStyle": {},
"padding": {},
"shadow": {},
"stroke": {},
"textDecoration": "<string>",
"verticalAlign": "<string>"
},
"textInfo": {
"backgroundColor": "<string>",
"color": "<string>",
"content": "<string>",
"fontFamily": "<string>",
"fontFamilyID": "<string>",
"fontFileName": "<string>",
"fontSize": 123,
"fontStyle": "<string>",
"fontWeight": "<string>",
"paddingBottom": 123,
"paddingLeft": 123,
"paddingRight": 123,
"paddingTop": 123,
"radius": 123,
"strokeColor": "<string>",
"strokeWidth": 123,
"textAlign": "<string>",
"textDecoration": "<string>",
"textOrientation": "<string>",
"textShadowBlur": 123,
"textShadowColor": "<string>",
"textShadowH": 123,
"textShadowV": 123,
"writingMode": "<string>"
},
"waveformConfig": {},
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
},
"r": 123,
"radius": "<string>",
"shape": {
"background_gauss": 123,
"color": "<string>",
"content_position": {
"h": 123,
"r": 123,
"w": 123,
"x": 123,
"y": 123
},
"disable_shape": true,
"object_fit": "<string>",
"radius": 123,
"type": "<string>"
},
"subtitle": {
"font_family": {
"name": "<string>",
"url": "<string>"
},
"html": "<string>",
"line_size": 123,
"mss": 123,
"prop": {},
"text": "<string>",
"tts_info_index": 123,
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
},
"template_meta": {
"is_goods_media": true,
"is_logo": true,
"no_need_replace": true
},
"timeline": {
"cross": {
"in": [
"<string>"
],
"in_time": 123,
"out": [
"<string>"
],
"out_time": 123
},
"end": 123,
"key_frames": [
{
"func": "<string>",
"properties": {
"alpha": 123,
"h": 123,
"r": 123,
"scale": 123,
"w": 123,
"x": 123,
"y": 123
},
"timestamp": 123
}
],
"start": 123
},
"top_level_key": "<string>",
"tts_audio_url": "<string>",
"type": "<string>",
"volume": 123,
"w": 123,
"x": 123,
"y": 123
},
"gpt_sell_text": [
{
"from_cache": true,
"index": 123,
"key_list": [
"<string>"
],
"prompt_id": 123,
"scene_text": [
"<string>"
],
"speakers": [
"<string>"
],
"text": "<string>",
"title": "<string>",
"url": "<string>"
}
],
"id": "<string>",
"image_podcast_template_id": 123,
"index_template_id": 123,
"is_demo": true,
"is_draft": 123,
"is_mine": true,
"language": "<string>",
"long_text": "<string>",
"music_id": 123,
"network_enabled": true,
"origin": 123,
"owner_avatar": "<string>",
"owner_nick_name": "<string>",
"person_id": 123,
"person_source": 123,
"persons": [
{
"avatar_library_id": 123,
"avatar_type": "<string>",
"avatar_url": "<string>",
"cover_url": "<string>",
"h": 123,
"id": 123,
"person_source": 123,
"w": 123,
"x": 123,
"y": 123
}
],
"placeholder_cover_url": "<string>",
"podcast_avatar_dp_typ": 123,
"podcast_avatar_id": 123,
"progress": 123,
"render_subtitle": 123,
"scene_details": [
{
"duration": 123,
"key": "<string>",
"script": "<string>",
"speaker": "<string>",
"tts_path": "<string>",
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
}
],
"scenes": [
{
"audio_script": {
"duration": 123,
"id": 123,
"name": "<string>",
"type": 123,
"url": "<string>"
},
"bg_color": "<string>",
"duration": 123,
"emotion_description": "<string>",
"key": "<string>",
"new_duration": 123,
"placeholder_script": {
"duration": 123
},
"script": "<string>",
"script_config": {
"emotion": "<string>",
"model_id": "<string>",
"pitch": 123,
"similarity": 123,
"speaker_boost": true,
"stability": 123,
"style_exaggeration": 123,
"tts_speed": 123,
"volume": 123
},
"script_type": "<string>",
"speak_person": {
"id": 123,
"person_source": 123
},
"speaker_order": 123,
"subtitle_info": [
{
"end_time": 123,
"start_time": 123,
"text": "<string>"
}
],
"tracks": [
{
"index": 123,
"key": "<string>",
"layers": [
{
"alpha": 123,
"api_template_meta": {
"replace_key": "<string>"
},
"color": "<string>",
"crop": {
"h": 123,
"w": 123,
"x": 123,
"y": 123
},
"fit_mode": "<string>",
"flip": "<string>",
"gauss": 123,
"h": 123,
"key": "<string>",
"mode": "<string>",
"moving_camera": {
"type": "<string>"
},
"path": "<string>",
"person_cover": "<string>",
"person_preview_url": "<string>",
"preview_path": "<string>",
"prop": {
"animationInfo": {
"cycle": {
"duration": 123,
"effectType": "<string>"
},
"enter": {
"duration": 123,
"effectType": "<string>"
},
"leave": {
"duration": 123,
"effectType": "<string>"
}
},
"audioPath": "<string>",
"bg_transparent": true,
"clip": {
"end": 123,
"start": 123
},
"emotion": {
"cover": "<string>",
"id": 123,
"name": "<string>",
"preview_transparent_video": "<string>",
"preview_video": "<string>"
},
"meta": {
"cover": "<string>",
"id": 123,
"name": "<string>",
"origin_height": 123,
"origin_width": 123,
"person_source": 123,
"playback_type": "<string>",
"preview_transparent_video": "<string>",
"preview_video": "<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
}
}
},
"sub_type": "<string>",
"tts_url": "<string>",
"type": "<string>"
},
"play_mode": "<string>",
"renderScale": 123,
"shapeInfo": {
"color": "<string>",
"html": "<string>",
"strokeColor": "<string>",
"strokeType": "<string>",
"strokeWidth": 123,
"type": "<string>"
},
"show_type": "<string>",
"templateInfo": {},
"textConfig": {
"align": "<string>",
"background": {},
"color": "<string>",
"fontFamily": {},
"fontSize": 123,
"fontStyle": {},
"padding": {},
"shadow": {},
"stroke": {},
"textDecoration": "<string>",
"verticalAlign": "<string>"
},
"textInfo": {
"backgroundColor": "<string>",
"color": "<string>",
"content": "<string>",
"fontFamily": "<string>",
"fontFamilyID": "<string>",
"fontFileName": "<string>",
"fontSize": 123,
"fontStyle": "<string>",
"fontWeight": "<string>",
"paddingBottom": 123,
"paddingLeft": 123,
"paddingRight": 123,
"paddingTop": 123,
"radius": 123,
"strokeColor": "<string>",
"strokeWidth": 123,
"textAlign": "<string>",
"textDecoration": "<string>",
"textOrientation": "<string>",
"textShadowBlur": 123,
"textShadowColor": "<string>",
"textShadowH": 123,
"textShadowV": 123,
"writingMode": "<string>"
},
"waveformConfig": {},
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
},
"r": 123,
"radius": "<string>",
"shape": {
"background_gauss": 123,
"color": "<string>",
"content_position": {
"h": 123,
"r": 123,
"w": 123,
"x": 123,
"y": 123
},
"disable_shape": true,
"object_fit": "<string>",
"radius": 123,
"type": "<string>"
},
"subtitle": {
"font_family": {
"name": "<string>",
"url": "<string>"
},
"html": "<string>",
"line_size": 123,
"mss": 123,
"prop": {},
"text": "<string>",
"tts_info_index": 123,
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
},
"template_meta": {
"is_goods_media": true,
"is_logo": true,
"no_need_replace": true
},
"timeline": {
"cross": {
"in": [
"<string>"
],
"in_time": 123,
"out": [
"<string>"
],
"out_time": 123
},
"end": 123,
"key_frames": [
{
"func": "<string>",
"properties": {
"alpha": 123,
"h": 123,
"r": 123,
"scale": 123,
"w": 123,
"x": 123,
"y": 123
},
"timestamp": 123
}
],
"start": 123
},
"top_level_key": "<string>",
"tts_audio_url": "<string>",
"type": "<string>",
"volume": 123,
"w": 123,
"x": 123,
"y": 123
}
],
"type": "<string>"
}
],
"transition": {
"type": "<string>"
},
"tts_args": {
"locale": "<string>",
"style": "<string>"
},
"tts_axis": [
{
"duration": 123,
"endTime": 123,
"startTime": 123,
"text": "<string>",
"wordLen": 123
}
],
"tts_payment_id": "<string>",
"tts_voice_id": "<string>"
}
],
"script_params": {
"duration_seconds": 123,
"language": "<string>",
"script_style": "<string>",
"speaker_count": 123,
"target_audience": "<string>"
},
"sell_text_count": 123,
"status": 123,
"step": 123,
"template_id": 123,
"template_type": "<string>",
"text": "<string>",
"timbre_configs": [
{
"emotion": "<string>",
"model_id": "<string>",
"pitch": 123,
"similarity": 123,
"speaker_boost": true,
"stability": 123,
"style_exaggeration": 123,
"tts_speed": 123,
"volume": 123
}
],
"timbres": [
{
"accent": "<string>",
"age": "<string>",
"args": [
{}
],
"audition_path": "<string>",
"category": "<string>",
"cloned_args": {
"labels": [
"<string>"
],
"remove_background_noise": true,
"scenes": [
"<string>"
]
},
"cloned_file": "<string>",
"create_from": 123,
"create_time": 123,
"default_speed": 123,
"desc": "<string>",
"descriptive": "<string>",
"external_lang_id": "<string>",
"external_status": 123,
"gender": "<string>",
"grade": 123,
"id": 123,
"is_recommend": 123,
"keywords": [
{}
],
"lang": "<string>",
"langID": "<string>",
"name": "<string>",
"order": 123,
"ori_cloned_file": "<string>",
"payment_id": "<string>",
"provider": "<string>",
"recent_voice_id": "<string>",
"space_id": 123,
"status": 123,
"tags": [
"<string>"
],
"text": "<string>",
"third_api_key_id": 123,
"type": "<string>",
"unique_id": "<string>",
"update_time": 123,
"use_case": "<string>",
"user_id": 123
}
],
"title": "<string>",
"tts_voice_id": "<string>",
"updated_at": 123,
"url": "<string>",
"user_id": 123,
"video_duration": 123,
"video_path": "<string>",
"video_select_length": "<string>",
"video_url": "<string>",
"workspace_index": 123
},
"details": "<unknown>",
"msg": "<string>",
"rid": "<string>"
}Projects and scripts
Get project
Get project script, task status, assets and completed video URL.
GET
/
open
/
podcast
/
v1
/
project
get project
curl --request GET \
--url https://api-services.podcastor.ai/open/podcast/v1/project \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api-services.podcastor.ai/open/podcast/v1/project"
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/project', 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/project",
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/project"
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/project")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-services.podcastor.ai/open/podcast/v1/project")
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": {
"a_id": 123,
"aspect_ratio": 123,
"attachments": [
{
"id": "<string>",
"type": "<string>",
"url": "<string>"
}
],
"audio_enhancement_enabled": true,
"avatar_type": "<string>",
"avatar_x_flag": "<string>",
"comment": {
"create_time": 123,
"data_id": "<string>",
"data_type": "<string>",
"feedback": "<string>",
"feedback_tag": [
"<string>"
],
"id": 123,
"rating": "<string>",
"uid": 123,
"update_time": 123
},
"copy_from": 123,
"cover_path": "<string>",
"cover_url": "<string>",
"create_from": 123,
"created_at": 123,
"digital_human_all_in_one_task_id": "<string>",
"err_code": "<string>",
"err_msg": "<string>",
"estimated_wait_time": 123,
"first_subtitle2_layer": {
"alpha": 123,
"api_template_meta": {
"replace_key": "<string>"
},
"color": "<string>",
"crop": {
"h": 123,
"w": 123,
"x": 123,
"y": 123
},
"fit_mode": "<string>",
"flip": "<string>",
"gauss": 123,
"h": 123,
"key": "<string>",
"mode": "<string>",
"moving_camera": {
"type": "<string>"
},
"path": "<string>",
"person_cover": "<string>",
"person_preview_url": "<string>",
"preview_path": "<string>",
"prop": {
"animationInfo": {
"cycle": {
"duration": 123,
"effectType": "<string>"
},
"enter": {
"duration": 123,
"effectType": "<string>"
},
"leave": {
"duration": 123,
"effectType": "<string>"
}
},
"audioPath": "<string>",
"bg_transparent": true,
"clip": {
"end": 123,
"start": 123
},
"emotion": {
"cover": "<string>",
"id": 123,
"name": "<string>",
"preview_transparent_video": "<string>",
"preview_video": "<string>"
},
"meta": {
"cover": "<string>",
"id": 123,
"name": "<string>",
"origin_height": 123,
"origin_width": 123,
"person_source": 123,
"playback_type": "<string>",
"preview_transparent_video": "<string>",
"preview_video": "<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
}
}
},
"sub_type": "<string>",
"tts_url": "<string>",
"type": "<string>"
},
"play_mode": "<string>",
"renderScale": 123,
"shapeInfo": {
"color": "<string>",
"html": "<string>",
"strokeColor": "<string>",
"strokeType": "<string>",
"strokeWidth": 123,
"type": "<string>"
},
"show_type": "<string>",
"templateInfo": {},
"textConfig": {
"align": "<string>",
"background": {},
"color": "<string>",
"fontFamily": {},
"fontSize": 123,
"fontStyle": {},
"padding": {},
"shadow": {},
"stroke": {},
"textDecoration": "<string>",
"verticalAlign": "<string>"
},
"textInfo": {
"backgroundColor": "<string>",
"color": "<string>",
"content": "<string>",
"fontFamily": "<string>",
"fontFamilyID": "<string>",
"fontFileName": "<string>",
"fontSize": 123,
"fontStyle": "<string>",
"fontWeight": "<string>",
"paddingBottom": 123,
"paddingLeft": 123,
"paddingRight": 123,
"paddingTop": 123,
"radius": 123,
"strokeColor": "<string>",
"strokeWidth": 123,
"textAlign": "<string>",
"textDecoration": "<string>",
"textOrientation": "<string>",
"textShadowBlur": 123,
"textShadowColor": "<string>",
"textShadowH": 123,
"textShadowV": 123,
"writingMode": "<string>"
},
"waveformConfig": {},
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
},
"r": 123,
"radius": "<string>",
"shape": {
"background_gauss": 123,
"color": "<string>",
"content_position": {
"h": 123,
"r": 123,
"w": 123,
"x": 123,
"y": 123
},
"disable_shape": true,
"object_fit": "<string>",
"radius": 123,
"type": "<string>"
},
"subtitle": {
"font_family": {
"name": "<string>",
"url": "<string>"
},
"html": "<string>",
"line_size": 123,
"mss": 123,
"prop": {},
"text": "<string>",
"tts_info_index": 123,
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
},
"template_meta": {
"is_goods_media": true,
"is_logo": true,
"no_need_replace": true
},
"timeline": {
"cross": {
"in": [
"<string>"
],
"in_time": 123,
"out": [
"<string>"
],
"out_time": 123
},
"end": 123,
"key_frames": [
{
"func": "<string>",
"properties": {
"alpha": 123,
"h": 123,
"r": 123,
"scale": 123,
"w": 123,
"x": 123,
"y": 123
},
"timestamp": 123
}
],
"start": 123
},
"top_level_key": "<string>",
"tts_audio_url": "<string>",
"type": "<string>",
"volume": 123,
"w": 123,
"x": 123,
"y": 123
},
"gpt_sell_text": [
{
"from_cache": true,
"index": 123,
"key_list": [
"<string>"
],
"prompt_id": 123,
"scene_text": [
"<string>"
],
"speakers": [
"<string>"
],
"text": "<string>",
"title": "<string>",
"url": "<string>"
}
],
"id": "<string>",
"image_podcast_template_id": 123,
"index_template_id": 123,
"is_demo": true,
"is_draft": 123,
"is_mine": true,
"language": "<string>",
"long_text": "<string>",
"music_id": 123,
"network_enabled": true,
"origin": 123,
"owner_avatar": "<string>",
"owner_nick_name": "<string>",
"person_id": 123,
"person_source": 123,
"persons": [
{
"avatar_library_id": 123,
"avatar_type": "<string>",
"avatar_url": "<string>",
"cover_url": "<string>",
"h": 123,
"id": 123,
"person_source": 123,
"w": 123,
"x": 123,
"y": 123
}
],
"placeholder_cover_url": "<string>",
"podcast_avatar_dp_typ": 123,
"podcast_avatar_id": 123,
"progress": 123,
"render_subtitle": 123,
"scene_details": [
{
"duration": 123,
"key": "<string>",
"script": "<string>",
"speaker": "<string>",
"tts_path": "<string>",
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
}
],
"scenes": [
{
"audio_script": {
"duration": 123,
"id": 123,
"name": "<string>",
"type": 123,
"url": "<string>"
},
"bg_color": "<string>",
"duration": 123,
"emotion_description": "<string>",
"key": "<string>",
"new_duration": 123,
"placeholder_script": {
"duration": 123
},
"script": "<string>",
"script_config": {
"emotion": "<string>",
"model_id": "<string>",
"pitch": 123,
"similarity": 123,
"speaker_boost": true,
"stability": 123,
"style_exaggeration": 123,
"tts_speed": 123,
"volume": 123
},
"script_type": "<string>",
"speak_person": {
"id": 123,
"person_source": 123
},
"speaker_order": 123,
"subtitle_info": [
{
"end_time": 123,
"start_time": 123,
"text": "<string>"
}
],
"tracks": [
{
"index": 123,
"key": "<string>",
"layers": [
{
"alpha": 123,
"api_template_meta": {
"replace_key": "<string>"
},
"color": "<string>",
"crop": {
"h": 123,
"w": 123,
"x": 123,
"y": 123
},
"fit_mode": "<string>",
"flip": "<string>",
"gauss": 123,
"h": 123,
"key": "<string>",
"mode": "<string>",
"moving_camera": {
"type": "<string>"
},
"path": "<string>",
"person_cover": "<string>",
"person_preview_url": "<string>",
"preview_path": "<string>",
"prop": {
"animationInfo": {
"cycle": {
"duration": 123,
"effectType": "<string>"
},
"enter": {
"duration": 123,
"effectType": "<string>"
},
"leave": {
"duration": 123,
"effectType": "<string>"
}
},
"audioPath": "<string>",
"bg_transparent": true,
"clip": {
"end": 123,
"start": 123
},
"emotion": {
"cover": "<string>",
"id": 123,
"name": "<string>",
"preview_transparent_video": "<string>",
"preview_video": "<string>"
},
"meta": {
"cover": "<string>",
"id": 123,
"name": "<string>",
"origin_height": 123,
"origin_width": 123,
"person_source": 123,
"playback_type": "<string>",
"preview_transparent_video": "<string>",
"preview_video": "<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
}
}
},
"sub_type": "<string>",
"tts_url": "<string>",
"type": "<string>"
},
"play_mode": "<string>",
"renderScale": 123,
"shapeInfo": {
"color": "<string>",
"html": "<string>",
"strokeColor": "<string>",
"strokeType": "<string>",
"strokeWidth": 123,
"type": "<string>"
},
"show_type": "<string>",
"templateInfo": {},
"textConfig": {
"align": "<string>",
"background": {},
"color": "<string>",
"fontFamily": {},
"fontSize": 123,
"fontStyle": {},
"padding": {},
"shadow": {},
"stroke": {},
"textDecoration": "<string>",
"verticalAlign": "<string>"
},
"textInfo": {
"backgroundColor": "<string>",
"color": "<string>",
"content": "<string>",
"fontFamily": "<string>",
"fontFamilyID": "<string>",
"fontFileName": "<string>",
"fontSize": 123,
"fontStyle": "<string>",
"fontWeight": "<string>",
"paddingBottom": 123,
"paddingLeft": 123,
"paddingRight": 123,
"paddingTop": 123,
"radius": 123,
"strokeColor": "<string>",
"strokeWidth": 123,
"textAlign": "<string>",
"textDecoration": "<string>",
"textOrientation": "<string>",
"textShadowBlur": 123,
"textShadowColor": "<string>",
"textShadowH": 123,
"textShadowV": 123,
"writingMode": "<string>"
},
"waveformConfig": {},
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
},
"r": 123,
"radius": "<string>",
"shape": {
"background_gauss": 123,
"color": "<string>",
"content_position": {
"h": 123,
"r": 123,
"w": 123,
"x": 123,
"y": 123
},
"disable_shape": true,
"object_fit": "<string>",
"radius": 123,
"type": "<string>"
},
"subtitle": {
"font_family": {
"name": "<string>",
"url": "<string>"
},
"html": "<string>",
"line_size": 123,
"mss": 123,
"prop": {},
"text": "<string>",
"tts_info_index": 123,
"word_seq": [
{
"break": "<string>",
"end": 123,
"hide": true,
"key": "<string>",
"start": 123,
"text": "<string>"
}
]
},
"template_meta": {
"is_goods_media": true,
"is_logo": true,
"no_need_replace": true
},
"timeline": {
"cross": {
"in": [
"<string>"
],
"in_time": 123,
"out": [
"<string>"
],
"out_time": 123
},
"end": 123,
"key_frames": [
{
"func": "<string>",
"properties": {
"alpha": 123,
"h": 123,
"r": 123,
"scale": 123,
"w": 123,
"x": 123,
"y": 123
},
"timestamp": 123
}
],
"start": 123
},
"top_level_key": "<string>",
"tts_audio_url": "<string>",
"type": "<string>",
"volume": 123,
"w": 123,
"x": 123,
"y": 123
}
],
"type": "<string>"
}
],
"transition": {
"type": "<string>"
},
"tts_args": {
"locale": "<string>",
"style": "<string>"
},
"tts_axis": [
{
"duration": 123,
"endTime": 123,
"startTime": 123,
"text": "<string>",
"wordLen": 123
}
],
"tts_payment_id": "<string>",
"tts_voice_id": "<string>"
}
],
"script_params": {
"duration_seconds": 123,
"language": "<string>",
"script_style": "<string>",
"speaker_count": 123,
"target_audience": "<string>"
},
"sell_text_count": 123,
"status": 123,
"step": 123,
"template_id": 123,
"template_type": "<string>",
"text": "<string>",
"timbre_configs": [
{
"emotion": "<string>",
"model_id": "<string>",
"pitch": 123,
"similarity": 123,
"speaker_boost": true,
"stability": 123,
"style_exaggeration": 123,
"tts_speed": 123,
"volume": 123
}
],
"timbres": [
{
"accent": "<string>",
"age": "<string>",
"args": [
{}
],
"audition_path": "<string>",
"category": "<string>",
"cloned_args": {
"labels": [
"<string>"
],
"remove_background_noise": true,
"scenes": [
"<string>"
]
},
"cloned_file": "<string>",
"create_from": 123,
"create_time": 123,
"default_speed": 123,
"desc": "<string>",
"descriptive": "<string>",
"external_lang_id": "<string>",
"external_status": 123,
"gender": "<string>",
"grade": 123,
"id": 123,
"is_recommend": 123,
"keywords": [
{}
],
"lang": "<string>",
"langID": "<string>",
"name": "<string>",
"order": 123,
"ori_cloned_file": "<string>",
"payment_id": "<string>",
"provider": "<string>",
"recent_voice_id": "<string>",
"space_id": 123,
"status": 123,
"tags": [
"<string>"
],
"text": "<string>",
"third_api_key_id": 123,
"type": "<string>",
"unique_id": "<string>",
"update_time": 123,
"use_case": "<string>",
"user_id": 123
}
],
"title": "<string>",
"tts_voice_id": "<string>",
"updated_at": 123,
"url": "<string>",
"user_id": 123,
"video_duration": 123,
"video_path": "<string>",
"video_select_length": "<string>",
"video_url": "<string>",
"workspace_index": 123
},
"details": "<unknown>",
"msg": "<string>",
"rid": "<string>"
}MCP tool:
podcast_get_project. OAuth scope: podcast.read.