Authorization: Bearer ********************{
"model": "qwen3-max",
"enable_thinking": true,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "1+2+3+。。。。+100=?"
}
]
}
]
}curl --location --request POST 'https://api.mixrouter.com/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "qwen3-max",
"enable_thinking": true,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "1+2+3+。。。。+100=?"
}
]
}
]
}'{}