curl --location --request POST 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "grok-imagine/text-to-image",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "一位女性坐在黑胶唱片机旁的电影肖像,复古客厅背景,柔和的环境照明,温暖的大地色调,怀旧的1970年代服装,沉思的情绪,柔和的胶片颗粒纹理,浅景深,复古编辑摄影风格。",
"aspect_ratio": "3:2"
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "task_grok_12345678"
}
}