curl --location --request POST 'https://api.kie.ai/api/v1/jobs/createTask' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "bytedance/seedream-v4-text-to-image",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "Draw the following system of binary linear equations and the corresponding solution steps on the blackboard: 5x + 2y = 26; 2x -y = 5.",
"image_size": "square_hd",
"image_resolution": "1K",
"max_images": 1
}
}'