Skip to main content
Version: Latest

Export Custom Avatar


The custom avatar export function describes the process of outputting video through an API request in JSON format so that video can be produced using custom avatars created by users.

1. API endpoint

https://app.aistudios.com/api/odin/v3/simple/custom

2. Request parameter

keydesctyperequireddefault
languageLanguage of the script you createdStringtrue-
textThe script that the model will utterStringtrue-
modelID of the custom avatar model to useStringtrue-
isExportWhether this project will be exported. Expose to the project if falseBooleanfalsetrue
webhookUrlAddress to send composite resultsStringfalse-

3. Response parameters

keydesctype
projectIdProject ID of the chroma key that made the export requestString
taskIdTask ID that made the export requestString

4. Sample Request

curl https://app.aistudios.com/api/odin/v3/simple/custom  \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X POST \
-d '{
"language": "en",
"text": "Sample Script",
"model": "M000045058",
"webhookUrl": ${webhook_delivery_address}
}'