Skip to main content
POST
/
v1
/
ai
/
lip-sync
/
veed-fabric-1-0-fast
curl --request POST \ --url https://api.freepik.com/v1/ai/lip-sync/veed-fabric-1-0-fast \ --header 'Content-Type: application/json' \ --header 'x-freepik-api-key: <api-key>' \ --data ' { "resolution": "720p", "image_url": "https://example.com/portrait.jpg", "audio_url": "https://example.com/speech-audio.mp3", "webhook_url": "https://my-webhook-url.com/endpoint" } '
{ "data": { "generated": [], "task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91", "status": "CREATED" } }

Authorizations

x-freepik-api-key
string
header
required

Your Freepik API key. Required for authentication. Learn how to obtain an API key

Body

application/json
resolution
enum<string>
required

Output video resolution. Controls the quality and dimensions of the generated talking video.

  • 720p: HD resolution (1280x720). Best for high-quality previews and production use.
  • 480p: SD resolution (854x480). Suitable for drafts and faster processing.
Available options:
720p,
480p
audio_url
string
required

URL of the audio file for lip synchronization. The person in the image will speak in sync with this audio. Must be a publicly accessible URL. Supported formats include MP3, WAV, and M4A.

Example:

"https://example.com/speech-audio.mp3"

image_url
string
required

URL of the portrait image to animate into a talking video. The image should contain a clearly visible face for best lip-sync results. Must be a publicly accessible URL.

Example:

"https://example.com/portrait.jpg"

webhook_url
string<uri>

Optional callback URL that will receive asynchronous notifications whenever the task changes status. The payload sent to this URL is the same as the corresponding GET endpoint response, but without the data field.

Example:

"https://www.example.com/webhook"

Response

OK - The task exists and the status is returned

data
object
required
Example:
{
  "task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
  "status": "CREATED",
  "generated": [
    "https://openapi-generator.tech",
    "https://openapi-generator.tech"
  ]
}