Skip to main content
POST
/
v1
/
avatars
/
Create New Avatar
curl --request POST \
  --url https://api.morphel.com/v1/avatars/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "video_url": "<string>",
  "name": "my avatar",
  "callback_url": "<string>",
  "clone_voice": true
}'
{
  "avatar_id": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
video_url
string
required

URL of the source video to create the avatar

name
string
required

Name of the avatar

Examples:

"my avatar"

callback_url
string | null

Callback URL for receiving status updates

clone_voice
boolean
default:true

Whether to clone the voice of the source video

Response

Successful Response

avatar_id
string
required
status
string
required