Authentication
authorization string required
All APIs require authentication via Bearer Token.
Get API Key:
Visit API Key Management Page to get your API Key.
Usage:
Add to request header:
Authorization: Bearer YOUR_API_KEY
Parameters
model string required
Model ID to use for the request
Value: qwen3.7-max-cn
messages array required
Array of message objects representing the conversation history
role
stringrequiredMessage role
Options:
user,assistant,system,developer
content
string | arrayrequiredMessage content. Use a text string for text-only requests, or a multimodal content array when image input is supported by the routed model
max_tokens integer
Maximum tokens to generate in the completion
Range: 1 - 65536
temperature number
Sampling temperature to use
Default: 1.0
Range: 0.0 - 2.0
top_p number
Nucleus sampling parameter
Default: 1.0
Range: 0.0 - 1.0
stream boolean
Whether to stream response incrementally
Default: false
response_format object
Format that the model must output. Used for structured outputs when supported by the routed model
type
stringrequiredOutput format type
Options:
text,json_object,json_schema
Response Format
id string
Unique identifier for the completion
object string
Object type, always chat.completion
created integer
Unix timestamp of when the completion was created
model string
The model used for the completion
choices array
Array of completion choices
index
integerChoice index
message
objectGenerated message
role
stringMessage role, always
assistantcontent
stringGenerated text content
finish_reason
stringReason the model stopped generating
usage object
Token usage statistics
prompt_tokens
integerNumber of prompt tokens
completion_tokens
integerNumber of generated tokens
total_tokens
integerTotal token count