Porten

qwen3-coder-30b-a3b-instruct

Run qwen3-coder-30b-a3b-instruct on Porten — EU-sovereign, OpenAI-compatible AI inference.

32K tokens contextTools / function calling ● Live now

Specifications

Model IDqwen3-coder-30b-a3b-instruct
Context window32K tokens
Capabilitieschat, Tools / function calling
AvailabilityLive now — a node is serving this model.
API compatibilityOpenAI Chat Completions (drop-in)
Data residencyEU-sovereign — runs on the Porten network in Europe

Pricing

$0.20per 1M input tokens
$0.40per 1M output tokens

Use qwen3-coder-30b-a3b-instruct with the OpenAI SDK

Point any OpenAI-compatible client at Porten — only the base URL and model change.

curl https://porten.ai/v1/chat/completions \
  -H "Authorization: Bearer $PORTEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3-coder-30b-a3b-instruct",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
from openai import OpenAI

client = OpenAI(base_url="https://porten.ai/v1", api_key="$PORTEN_API_KEY")

resp = client.chat.completions.create(
    model="qwen3-coder-30b-a3b-instruct",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)
Get an API key Try it in the playground Browse all models