Endpoint Qwen3.6-35B-A3B-FP8
Qwen3.6-35B-A3B-FP8 This MoE (Mixture-of-Experts) model strikes the ultimate balance between "large-model intelligence" and "small-model speed."
Metadata
Log In To Use This Endpoint
This public page shows the published endpoint metadata and integration shape. Log in to get a tenant-scoped endpoint URL, inference API key, and the interactive playground. Log in
Integration
Start with the shared setup below, then choose the endpoint mode that fits your workload: token-based shared serving or a tenant-scoped dedicated GPU endpoint.
An inference API key is required for both endpoint modes. Until one is available, the fields below keep the correct request shape and use a placeholder token.
Token-Based
Use the shared OpenAI-compatible endpoint. The base URL is shared across published endpoints, and usage is billed per token.
curl https://model.inferx.net/endpoints/v1/chat/completions \
-H "Authorization: Bearer $INFERX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "Qwen3.6-35B-A3B-FP8", "messages": [{"role": "user", "content": "Hello"}]}'
Dedicated GPU
Use the tenant-scoped endpoint URL for this published endpoint when you want dedicated GPU serving instead of shared token-based routing.
curl -X POST https://model.inferx.net/funccall/<tenant>/endpoints/Qwen3.6-35B-A3B-FP8/v1/chat/completions \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <INFERENCE_API_KEY>' \
-d '{"max_tokens": "200", "temperature": "0", "messages": [{"role": "user", "content": [{"type": "text", "text": "What is in this image?"}, {"type": "image_url", "image_url": {"url": "<data-url>"}}]}], "stream": true}'