40+AI providers
200+Models available
99.9%Uptime SLA
<200msP99 latency
Everything you need to build with LLMs
A single gateway for models, billing, and reliability.
One endpoint, every model
Reach OpenAI, Anthropic, Gemini and 40+ providers through one base URL and one key.
Drop-in compatible
Keep the official OpenAI SDK you already use. Swap the base URL and key, nothing else.
200+ models, one bill
Chat, embeddings, image, audio and video models under a single account.
Built for low latency
Smart routing and connection reuse keep p99 response time under 200ms.
Zero data retention
We proxy your requests and store none of your prompts or completions.
Pay only for usage
$1 = 100 credits. Transparent token and generation pricing with no minimums.
Integrate in three lines
Works with the official SDKs across languages.
main.py
from openai import OpenAI
client = OpenAI(
base_url="https://smartapi.io/v1",
api_key="sk-smartapi-***",
)
resp = client.chat.completions.create(
model="claude-sonnet-4",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)