Authorization: Bearer ********************{
"model": "qwen3-max-2026-01-23",
"messages": [
{
"role": "system",
"content": "请抽取用户的姓名与年龄信息,以JSON格式返回"
},
{
"role": "user",
"content": "大家好,我叫刘五,今年34岁,邮箱是liuwu@example.com"
}
],
"response_format": {
"type": "json_object"
}
}curl --location --request POST 'https://api.toiotech.com/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "qwen3-max-2026-01-23",
"messages": [
{
"role": "system",
"content": "请抽取用户的姓名与年龄信息,以JSON格式返回"
},
{
"role": "user",
"content": "大家好,我叫刘五,今年34岁,邮箱是liuwu@example.com"
}
],
"response_format": {
"type": "json_object"
}
}'{
"choices": [
{
"finish_reason": "stop",
"index": 0,
"message": {
"content": "{\n \"姓名\": \"刘五\",\n \"年龄\": 34\n}",
"role": "assistant"
}
}
],
"created": 1770016853,
"id": "chatcmpl-29158f48-74a1-9584-a9c6-f80165dfd594",
"model": "qwen3-max-2026-01-23",
"object": "chat.completion",
"usage": {
"completion_tokens": 18,
"prompt_tokens": 47,
"total_tokens": 65
}
}