ChatAlibaba / QwenFeatured1 vendors

Qianwen3.8Max

Qianwen3.8Max, a promoted Qwen route for Chinese understanding, complex reasoning, coding, and enterprise agents.

Get API Key on gpt88.ccQuickstart

Overview

  • Qianwen3.8Max is a newly promoted Qwen preview model in the GPT88 catalog. Its standard model ID is qwen3.8-max-preview; confirm any GPT88 alias in GET /v1/models.
  • It is intended for Chinese-first complex tasks, code generation, knowledge work, structured output, and multi-step agent workflows.

Best Use Cases

  • Use it for Chinese customer support, enterprise assistants, knowledge-base Q&A, and content generation
  • Evaluate it on code understanding, code generation, and structured-output tasks
  • Use it when tool calls, function calling, and multi-turn planning are part of the workflow
  • Prioritize it when evaluating a higher-capability Qwen route

Integration Notes

  • Use the GPT88 Base URL https://api.gpt88.cc and set model to qwen3.8-max-preview in OpenAI-compatible requests.
  • Call GET /v1/models and then send a minimal POST /v1/chat/completions request to confirm access for the current API key.
  • Use an OpenAI SDK, cURL, ChatBox, Cursor, Claude Code, Codex, or another compatible client according to that client's protocol settings.

Usage Notes

  • Availability, pricing, context limits, rate limits, routes, tool support, and permissions are determined by the current GPT88 console configuration.
  • Prefer the standard model ID qwen3.8-max-preview. If it is absent from /v1/models, check account access, route availability, or a GPT88-specific alias first.
  • Evaluate Chinese business samples, code samples, and tool-calling workloads before a production rollout.

Capabilities

Chinese understandingComplex reasoningCode generationFunction calling

Recommended Scenarios

  • Chinese enterprise assistants
  • Software development
  • Knowledge-base Q&A
  • Multi-step agents

Endpoint Path

POSThttps://api.gpt88.cc/v1/chat/completions

The endpoint path is determined by the model category. Chat, image, video, and audio models use different endpoints.

Send requests with Authorization: Bearer <API_KEY>. See Chat Completions API for the full parameter reference.

API Docs

Endpoint
POST /v1/chat/completions
Model ID
qwen3.8-max-preview
Content-Type
application/json
Protocol
OpenAI-compatible chat completions endpoint with streaming and non-streaming output.
Base URL
Use https://api.gpt88.cc for OpenAI-compatible and Claude-style tools.

Headers / Auth

  • AuthorizationstringRequired
    Send Bearer <GPT88_API_KEY>. Create the API key in the gpt88.cc console.
  • Content-TypestringRequired
    Request body format. Audio transcription uploads use multipart/form-data.
    Default:application/json
  • Acceptstring
    Non-streaming requests return JSON; streaming chat requests return SSE chunks.
    Default:application/json or text/event-stream

Chat Protocol Differences

For chat models, the protocol used by the client matters as much as the model name. Claude Code / Anthropic SDK and OpenAI SDK build different request paths.

OpenAI CompatibleRecommended
Base URL
https://api.gpt88.cc
Endpoint
POST /v1/chat/completions
Body
{ "model": "qwen3.8-max-preview", "messages": [...] }
Anthropic / Claude
Base URL
https://api.gpt88.cc
Endpoint
POST /v1/messages
Body
{ "model": "qwen3.8-max-preview", "messages": [...] }

This model is usually best accessed through the OpenAI-compatible protocol. Only use the Anthropic-style path when the target tool explicitly requires it.

Request Parameters

The fields below are generated by model category. Pricing, context limits, rate limits, and available routes should be confirmed in the gpt88.cc console.

  • modelstringRequired
    Current model ID: qwen3.8-max-preview. Preserve the exact casing when copying.
  • messagesarray<Message>Required
    Conversation history. Each message includes role and content.
  • streamboolean
    Enable SSE streaming. Useful for chat interfaces and long responses.
    Default:false
  • temperaturenumber
    Sampling temperature. Higher values produce more variation; production workloads usually start with a fixed value.
    Default:1
  • max_tokensinteger
    Maximum output tokens for this request. Real context limits should be confirmed in the console.
  • response_formatobject
    Structured output config, for example { "type": "json_object" }.
  • toolsarray<Tool>
    Function-calling tool definitions. Availability depends on the model and account configuration.

Response Fields

Response bodies generally follow OpenAI-compatible shapes. Media models may return async task IDs or resource URLs.

  • idstringRequired
    Unique completion ID for tracing and debugging.
  • objectstringRequired
    Usually chat.completion or a streaming chunk type.
  • modelstringRequired
    Actual model ID that handled inference.
  • choicesarray<Choice>Required
    Generated choices including message, delta, and finish_reason.
  • usageobject
    Token usage statistics. Streaming calls may return this only at the end or in non-streaming mode.

Status Codes

  • 200OKRequired
    Request succeeded. See the response field table above for the response body shape.
  • 400Bad Request
    Invalid request fields, such as missing required fields, unsupported image size format, or unsupported file type.
  • 401Unauthorized
    API key is missing, invalid, or malformed.
  • 404Not Found
    Endpoint or model not found. Confirm the path is /v1/chat/completions and the model ID is qwen3.8-max-preview.
  • 429Rate Limited
    Rate limit, concurrency cap, or insufficient balance. Check the console for the current allowance.
  • 5xxUpstream Error
    Upstream or request failure. Retry with the same Base URL and keep the request ID for debugging.

Errors and Troubleshooting

  • 401: verify Authorization is Bearer <API_KEY> and the key is still valid.
  • 404: confirm the endpoint is /v1/chat/completions and the model ID qwen3.8-max-preview is available in the console.
  • 429: reduce concurrency, shorten requests, or check balance and quota in the console.
  • 5xx: retry with the same Base URL and keep the request ID for debugging.

Request Examples

curl https://api.gpt88.cc/v1/chat/completions \
  -H "Authorization: Bearer $GPT88_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3.8-max-preview",
    "messages": [
      {"role": "user", "content": "Introduce gpt88.cc in one sentence."}
    ]
  }'

Expected response (trimmed example):

200 OKjson
{
  "id": "chatcmpl-qwen3-8-",
  "object": "chat.completion",
  "created": 1730000000,
  "model": "qwen3.8-max-preview",
  "choices": [
    {
      "index": 0,
      "finish_reason": "stop",
      "message": { "role": "assistant", "content": "..." }
    }
  ],
  "usage": { "prompt_tokens": 24, "completion_tokens": 64, "total_tokens": 88 }
}