POST
/
v0
/
assistant
/
photo
/
animate
curl --request POST \
  --url 'https://api.unify.ai/v0/assistant/photo/animate' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: multipart/form-data' \

{
    "info": "string"
}

Generates an animated video of the assistant using an input image and audio. Inputs can be URLs or file uploads. This action costs credits.

Authorizations

Authorization
string
required

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

Body

image_url
string | null
image_file
string | null
audio_url
string | null
audio_file
string | null
seed
integer | null
dynamic_scale
number | null
default:"1.0"
min_resolution
integer | null
default:"512"
inference_steps
integer | null
default:"25"
keep_resolution
boolean | null
default:"true"
curl --request POST \
  --url 'https://api.unify.ai/v0/assistant/photo/animate' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: multipart/form-data' \

{
    "info": "string"
}