Qwen3.8-Max-Preview - Responses API
🚧 This model is not yet available, stay tuned
- Call Qwen3.8-Max-Preview using the OpenAI Responses protocol
- Flexible input:
inputcan be a string or a Chat-format message array (supporting multimodalinput_text/input_image) - Multi-turn conversation: pass
previous_response_idto link to the previous response, and the server automatically assembles the context (the responseidis valid for 7 days) - Session caching: enable by adding
x-dashscope-session-cache: enableto the request header (default disable); seeusage.input_tokens_details.cached_tokensfor hits - Thinking effort: controlled via
reasoning.effort - Streaming output: when
stream=true, returned as Responses events (response.output_text.delta/response.completed, etc.)
https://direct.evolink.ai, which offers better support for text models and long connections. https://api.evolink.ai is the primary multimodal endpoint; use it when your request includes image input.Session caching: The Responses API enables server-side session caching via the x-dashscope-session-cache: enable request header to reduce multi-turn latency and cost.Authorizations
##All APIs require Bearer Token authentication##
Get API Key:
Visit API Key Management Page to get your API Key
Add to request header:
Headers
Session caching switch. When set to enable, the server automatically caches the conversation context to reduce multi-turn inference latency and cost.
enable, disable Body
Chat model name
qwen3.8-max-preview "qwen3.8-max-preview"
Model input. Can be a string (plain text) or a Chat-format message array (supporting multimodal input_text / input_image).
Inserted as a system instruction at the start of the context. When using previous_response_id, the previous turn's instructions are not carried into this turn.
Unique ID of the previous response (the response id, valid for 7 days). Used to link multi-turn conversations; the server automatically retrieves and combines that turn's input and output as context.
Maximum number of output tokens to generate this time (including thinking).
Thinking control.
Whether to store this response.
true(default): can be referenced byprevious_response_idfalse: not stored and cannot be referenced later
Whether to return a Responses event stream.
Sampling temperature, range [0, 2].
0 <= x <= 2Nucleus sampling parameter, range (0, 1].
0 <= x <= 1List of tools. Supports built-in tools (web_search for web search, web_extractor for web extraction, code_interpreter for code interpretation) and custom function tools.
Response
Generated successfully
Unique ID of this response (valid for 7 days, can be used as previous_response_id)
"resp_xxxxxxxx"
"response"
Response status
"completed"
"qwen3.8-max-preview"
Array of output items (including message / reasoning / built-in tool calls, etc.)
Token usage statistics.