Quick Start
Go from zero to your first routed completion in a few minutes.
- 1. Connect a provider key. In your dashboard, open Providers and add a key for OpenAI, Anthropic, Gemini, DeepSeek or Grok. It's encrypted before storage.
- 2. Generate a gateway key. Under API Keys, create a
tg_live_…key. Copy it — it's shown once. - 3. Point your SDK at TigerGateway. Change only the base URL and key.
bash
curl https://gateway.hacktigerlabs.com/v1/chat/completions \
-H "Authorization: Bearer $TIGERGATEWAY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet",
"messages": [{ "role": "user", "content": "Hello!" }]
}'The model field accepts an alias (e.g. claude-sonnet) that TigerGateway maps to the right provider using your connected key. See Models for the full list.