SnapeditAPI
Đăng nhậpBắt đầu miễn phí
Đăng nhập
API Reference

Create talking-head upload URLs

Create image and audio upload URLs. Upload the files to provided URLs with HTTP PUT before creating the task.

post/v1/videos/talking-head/upload

AuthorizationThis endpoint requires an API key. Pass it in the api-key header on every request. Learn more

Responses

Upload URLs createdGenerateVideoUploadResponse

FieldTypeDescription
task_idstring
image_upload_urlstringURL for the source image.
audio_upload_urlstringURL for talking-head audio.
curl -X POST "https://api.snapedit.app/v1/videos/talking-head/upload" \
  -H "api-key: YOUR_API_KEY"
Response
{
  "task_id": "task_abc123",
  "image_upload_url": "string",
  "audio_upload_url": "string"
}