Open registration
Swedish LLM API.
Try for free.
Sign up as an Early Adopter and get 1,000,000 tokens to start with. OpenAI-compatible API on Swedish GPU hardware.
1 000 000
tokens to start
262K
Context window
Sweden
All data stays here
€0
Free during beta
Create your account
Enter your email and we'll send you a magic link to activate your account.
Ready in 3 lines
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.staik.se/v1",
api_key="sk-st-..."
)
response = client.chat.completions.create(
model="qwen3.6:35b-a3b",
messages=[{"role": "user", "content": "Hej!"}]
)
print(response.choices[0].message.content)