character_id_list parameter to reference pre-animated characters:character_id_list parameter is optional and allows you to incorporate multiple character animations (as an array, maximum 5) into your pro image-to-video generation.callBackUrl parameter to receive automatic notifications when generation completes, rather than polling the status endpoint.| Resource | Description |
|---|---|
| Market Overview | Explore all available models |
| Common API | Check credits and account usage |
curl --location --request POST 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "sora-2-pro-image-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"progressCallBackUrl": "https://your-domain.com/api/v1/jobs/progressCallBackUrl",
"input": {
"prompt": "",
"image_urls": [],
"aspect_ratio": "landscape",
"n_frames": "10",
"size": "standard",
"remove_watermark": true,
"character_id_list": [
"example_123456789"
]
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "task_sora-2-pro-image-to-video_1765183474472"
}
}