# staik — Swedish AI Inference API # https://api.staik.se # Stockholms Teknik och AI Konsult (559270-0032) ## What is staik? staik is an OpenAI-compatible LLM API running on dedicated GPU hardware in Sweden. All data — prompts, responses, and usage statistics — stays in Sweden. No third-party data sharing, no training on customer data. The service is built for developers, companies, and AI agents that need GDPR-compliant AI inference with full data sovereignty. ## Key Features - OpenAI-compatible API (drop-in replacement — just change base_url) - All data stays in Sweden (GDPR, Schrems II compliant) - Dedicated GPU hardware (NVIDIA RTX 3090) - Streaming, tool calling, and vision support - 262K token context window - No data sharing, no model training on customer data ## Available Models | Model | Capabilities | Context Window | |-------|-------------|----------------| | qwen3.6:35b-a3b | Chat / Reasoning / Vision / Tool calling | 262,144 tokens | | qwen3.5:9b | Chat / Reasoning / Tool calling | 32,768 tokens | | gemma4:31b | Chat / Reasoning / Vision / Tool calling | 262,144 tokens | | bge-m3:latest | Embedding (1024-dim vectors, max 8,192 input tokens) | 8,192 | | kb-whisper-large | Audio transcription (Swedish-trained) | — | Embedding via `POST /v1/embeddings` (OpenAI-compatible). bge-m3 returns 1024-dimensional vectors — configure pgvector columns as `vector(1024)`. Supports both `input: "string"` and `input: ["multiple", "strings"]`. Audio transcription via `POST /v1/audio/transcriptions` (OpenAI-compatible). Billed at 100 tokens per second of audio. 1 minute = 6,000 tokens, 1 hour = 360,000 tokens. Max file size 25 MB. Formats: mp3, wav, m4a, ogg, flac, webm, mp4. ## Pricing (SEK, incl. VAT) | Plan | Price | Token Limit | Target Audience | |------|-------|-------------|-----------------| | Pay-as-you-go | 0 kr/mo + token purchases | 100,000 free tokens (30 days) | Testing, prototypes | | Hobby Mini | 29 kr/mo | 50,000 tokens/day | Hobby projects | | Hobby | 59 kr/mo | 250,000 tokens/day | Personal projects | | Agent Mini | 99 kr/mo | 100,000 tokens/hour | AI agents | | Agent | 299 kr/mo | 500,000 tokens/hour | Professional agents | | Agent Pro | 499 kr/mo | 1,000,000 tokens/hour | Large-scale agents | | Agent Scale | Contact us | Custom | Enterprises, AI agencies | Agent plans include priority FIFO queue. Additional tokens available as one-time packs (9–349 kr). ## API Endpoints - POST /v1/chat/completions — Chat (streaming, tool calling, vision) - POST /v1/embeddings — Embedding (bge-m3) - GET /v1/models — List available models - GET /v1/account — Account information - GET /v1/usage — Token usage and queue position ## Quick Start Change base_url in your existing OpenAI code: ```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": "Hello!"}] ) ``` Compatible with OpenAI SDK (Python, Node.js), LangChain, LlamaIndex, CrewAI, and any tool that supports the OpenAI format. ## Pages - Homepage (en): https://api.staik.se/en - Homepage (sv): https://api.staik.se/sv - Documentation: https://api.staik.se/en/docs - Pricing: https://api.staik.se/en/pricing - Blog: https://api.staik.se/en/blog - GDPR Guide: https://api.staik.se/en/blog/gdpr - AI Research: https://api.staik.se/en/blog/forskning - About Us: https://api.staik.se/en/om-oss - Privacy Policy: https://api.staik.se/en/integritet - Terms of Purchase: https://api.staik.se/en/kopvillkor - Status: https://api.staik.se/en/status ## Blog Daily analyses of the latest AI research, based on academic papers from arXiv and Hugging Face. Published in Swedish and English. Topics include machine learning, LLM architecture, GDPR, and AI agents. - All posts: https://api.staik.se/en/blog - Research: https://api.staik.se/en/blog/forskning - GDPR & AI: https://api.staik.se/en/blog/gdpr - Insights: https://api.staik.se/en/blog/insights ## Contact - Email: customercare@staik.se - Website: https://api.staik.se - Facebook: https://www.facebook.com/profile.php?id=61574280802918 - Instagram: https://www.instagram.com/api_staik_se/ - Company: Stockholms Teknik och AI Konsult (559270-0032), Stockholm, Sweden