Qwen3 30B A3B Thinking 2507
ChatQwen3-30B-A3B-Thinking-2507-FP8
Qwen3 30B A3B Thinking 2507 on FlexAI: Alibaba LLM (Reasoning), Apache 2.0 license, served via the OpenAI-compatible Token Factory at the live market-tracked rate.
Pricing
Input
$0.08 / M tokens
Output
$0.28 / M tokens
Context
256K tokens
API endpoint
/v1/chat/completions
Compatibility
OpenAI
Parameters
30B MoE (3B active)
License
Apache 2.0
Hardware
H100
Quantization
FP8
Estimate your monthly cost
M tokens
M tokens
10M × $0.08/M input$0.8
2M × $0.28/M output$0.56
Estimated monthly cost$1.36
Estimate only, at the current market-tracked rate. Usage-based; no minimums.
Get an API keyQuick Start
Qwen3-30B-A3B-Thinking-2507-FP8
from openai import OpenAI
client = OpenAI(
base_url="https://tokens.flex.ai/v1",
api_key="your-api-key",
)
response = client.chat.completions.create(
model="Qwen3-30B-A3B-Thinking-2507-FP8",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)