Qwen3.8 Flash (Together) API
Together AI · serves qwen3.8-flash
Pricing
| Input / 1M | $0.15 |
|---|---|
| Output / 1M | $0.47 |
| Blended / 1M | $0.62 |
| Context window | 1,000,000 tokens |
| Max output | 131,072 tokens |
| License | Open weights · Apache 2.0 permissive |
| Knowledge cutoff | September 2025 · source |
textvisionfunction-calling
Price verified 2026-09-05 (0 days ago) · sourcecorroborated
Sources
| Source | Input / 1M | Output / 1M | Verified |
|---|---|---|---|
| Provider page | $0.15 | $0.47 | 2026-09-05 |
| LiteLLM | $0.15 | $0.47 | 2026-09-03 |
| models.dev | $0.15 | $0.47 | 2026-09-04 |
Two independent sources agree within 20%.
Call it
OpenAI-compatible endpoint — set TOGETHER_API_KEY.
curl https://api.together.xyz/v1/chat/completions \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "Qwen/Qwen3.8-Flash",
"messages": [{"role": "user", "content": "Hello"}]
}'from openai import OpenAI # pip install openai
client = OpenAI(
base_url="https://api.together.xyz/v1",
api_key="...", # TOGETHER_API_KEY
)
resp = client.chat.completions.create(
model="Qwen/Qwen3.8-Flash",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)Use this data
Raw JSON for this page: qwen3.8-flash.json. Free to reuse under CC BY 4.0 with attribution to apipriceindex.com.