curl --location --request POST '/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'X-Forwarded-Host: localhost:5173' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "sora-2",
"messages": [
{
"role": "user",
"content": "Generate a high-definition video of cows and horses dancing."
},
{
"role": "assistant",
"content": ""
}
]
}'{}