API Documentation

Last updated:

On this page

staik offers an OpenAI-compatible REST API on dedicated GPU hardware in Sweden. Your data never leaves the country. Just change base_url in your existing code — everything else works.

Get started in 5 minutes

1. Get an API key

Sign up at /register — you get 100,000 welcome tokens (valid for 30 days) and a key with the sk-st- prefix. Need more? Pick a plan on the pricing page or buy token packs from the dashboard.

2. Make your first request

python
from openai import OpenAI

client = OpenAI(
    api_key="sk-st-your-key",
    base_url="https://api.staik.se/v1",
)

response = client.chat.completions.create(
    model="qwen3.6:35b-a3b",
    messages=[{"role": "user", "content": "Explain what a vector database is."}],
)
print(response.choices[0].message.content)

3. Pick the right model

ModelVendorParametersContext windowVision
qwen3.6:35b-a3bAlibaba35B MoE262,144
qwen3.5:9bAlibaba9.7B262,144
gemma4:31bGoogle DeepMind31B262,144
bge-m3:latestBAAI568M8,192embedding
kb-whisper-largeKungliga biblioteket1.5Baudio (sv)

qwen3.5:35b-a3b is accepted as a backwards-compatible alias for qwen3.6:35b-a3b.

Read more about the models and how to list them programmatically under Models.

Next steps

Data residency

All inference runs on our own GPU servers in Sweden. Prompts and responses never leave the country. See the privacy policy.