// Unified model gateway
One base URL for every major model
Claude, GPT, Gemini, DeepSeek and more, behind one OpenAI-compatible endpoint — swap the domain and go.
# Base URL
https://gateway.admesh.ai/v1
# First request
curl https://gateway.admesh.ai/v1/chat/completions \
-H "Authorization: Bearer $ADMESH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"anthropic/claude-sonnet","messages":[{"role":"user","content":"Hello"}]}'Get started in three steps
- 01
Create an API key
Generate a sk-live-* key in the console — the secret is shown once.
- 02
Copy the base URL
Every model shares one address; no separate upstream accounts.
- 03
Send your first request
Call any model with curl or the OpenAI SDK.