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-text-to-video",
"callBackUrl": "https://your-domain.com/api/callback",
"progressCallBackUrl": "https://your-domain.com/api/v1/jobs/progressCallBackUrl",
"input": {
"prompt": "一只快乐的小狗在花园里奔跑",
"aspect_ratio": "landscape",
"n_frames": "10",
"size": "high",
"remove_watermark": true,
"character_id_list": [
"example_123456789"
]
}
}'