Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"model": "qwen-turbo",
"messages": [
{
"role": "user",
"content": "你好,请介绍一下自己"
}
]
}
Request Code Samples
curl --location --request POST '/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "qwen-turbo",
"messages": [
{
"role": "user",
"content": "你好,请介绍一下自己"
}
]
}'
Responses
application/json Modified at 2026-01-22 03:52:51