Qwen Image Plus is an Alibaba Qwen model exposed on the Huzz API with a single Huzz key and one consistent, OpenAI-compatible interface. Capabilities: Chat. It supports streaming responses. Call it at https://api.huzz.ai using Authorization: Bearer $HUZZ_API_KEY — no per-provider accounts or SDKs required.
FamilyCapabilitiesStreamingAsyncPricing
Alibaba QwenChatYesNoUsage-based

Endpoints

MethodPathCapability
POST/api/v3/qwen/qwen-image-plus/text-to-textChat

Code samples

Authenticate with Authorization: Bearer $HUZZ_API_KEY — get a key at huzz.ai/register.
curl https://api.huzz.ai/v1/chat/completions \
  -H "Authorization: Bearer $HUZZ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-image-plus",
    "messages": [{"role": "user", "content": "Hello from Huzz!"}]
  }'
This model supports token streaming — see the Streaming guide.