# Alibaba: qwen3-next-80b-a3b-instruct

- Model ID: `qwen3-next-80b-a3b-instruct`
- Provider: Alibaba
- Web version: https://www.moleapi.com/en/models/qwen/qwen3-next-80b-a3b-instruct
- Content status: catalog

## Model introduction

Qwen model by 阿里巴巴 for general chat, writing, coding assistance, and tool-assisted workflows.

## Model capabilities

- OpenAI compatible
- Responses API
- Anthropic compatible
- Gemini compatible
- Prompt cache

### Verified specifications

- Catalog status: Currently available on MoleAPI
- Compatible protocols: openai, openai-response, openai-response-compact, anthropic, gemini, openai-alpha-search
- Available billing groups: Standard, Temporary (availability may vary)

## Model pricing and access

Pricing is supplied dynamically by the MoleAPI console API.

### Standard (default, x1)

- Input: $0.144 / 1M tokens
- Output: $0.576 / 1M tokens
- Cache read: $0.072 / 1M tokens

### Temporary (availability may vary) (temp, x0.1)

- Input: $0.0144 / 1M tokens
- Output: $0.0576 / 1M tokens
- Cache read: $0.0072 / 1M tokens

### Access protocols

| Protocol | Method | Endpoint |
| --- | --- | --- |
| openai | POST | /v1/chat/completions |
| openai-response | POST | /v1/responses |
| openai-response-compact | POST | /v1/responses/compact |
| anthropic | POST | /v1/messages |
| gemini | POST | /v1beta/models/{model}:generateContent |
| openai-alpha-search | POST | /v1/alpha/search |

- Live pricing source: https://home.moleapi.com/api/pricing

## About qwen3-next-80b-a3b-instruct

Qwen model by 阿里巴巴 for general chat, writing, coding assistance, and tool-assisted workflows.

### Sources

- [MoleAPI console pricing catalog](https://home.moleapi.com/api/pricing) — MoleAPI

## Code examples

### cURL

```bash
curl https://api.moleapi.com/v1/responses \
  -H "Authorization: Bearer $MOLEAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"qwen3-next-80b-a3b-instruct","input":"Explain this problem step by step."}'
```

### Python

```python
from openai import OpenAI

client = OpenAI(base_url="https://api.moleapi.com/v1", api_key="YOUR_MOLEAPI_API_KEY")
response = client.responses.create(model="qwen3-next-80b-a3b-instruct", input="Explain this problem step by step.")
print(response.output_text)
```

### TypeScript

```typescript
import OpenAI from "openai";

const client = new OpenAI({ baseURL: "https://api.moleapi.com/v1", apiKey: process.env.MOLEAPI_API_KEY });
const response = await client.responses.create({ model: "qwen3-next-80b-a3b-instruct", input: "Explain this problem step by step." });
console.log(response.output_text);
```

## More related models

- [deepseek-r1-0528-qwen3-8b](https://www.moleapi.com/en/models/qwen/deepseek-r1-0528-qwen3-8b) — Alibaba
- [deepseek-r1-distill-qwen-1.5b](https://www.moleapi.com/en/models/qwen/deepseek-r1-distill-qwen-1.5b) — Alibaba
- [deepseek-r1-distill-qwen-14b](https://www.moleapi.com/en/models/qwen/deepseek-r1-distill-qwen-14b) — Alibaba

## Frequently asked questions

### How is qwen3-next-80b-a3b-instruct priced?

Prices are read from the MoleAPI console API and update with model prices, context tiers, and account groups.

### How can I access qwen3-next-80b-a3b-instruct?

The catalog currently lists openai, openai-response, openai-response-compact, anthropic, gemini, openai-alpha-search.

### How do I switch an existing project to qwen3-next-80b-a3b-instruct?

Keep the MoleAPI API address and key, replace the model parameter, and check protocol-specific parameters.

### Where do the qwen3-next-80b-a3b-instruct details come from?

Only confirmed availability, pricing, and protocol details from the MoleAPI catalog are included.
