AI traffic gateway
AISIX AI Gateway
Put one stable API contract in front of your AI providers
AISIX AI Gateway is a dedicated gateway for AI traffic. It lets applications call stable model aliases while the AI platform team controls provider credentials, routing, failover, budgets, rate limits, caching, guardrails, and observability.
curl -sS \
http://127.0.0.1:3000/v1/chat/completions \
-H "Authorization: Bearer sk-demo-caller" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o-prod",
"messages": [
{"role": "user", "content": "Hello"}
]
}'How requests flow
Applications call AISIX first. AISIX authenticates the caller, resolves the model alias, applies policy, and forwards the request to the selected provider.
AISIX keeps client traffic on one API shape while resolving the provider-side target for each request.
What changes when AI traffic goes through AISIX
Application teams keep calling a familiar API. AI platform teams move provider credentials, model aliases, routing, budgets, and policy into one operator-managed gateway.
Why AISIX if you already use APISIX or API7 Gateway?
APISIX and API7 Gateway can add AI behavior to normal gateway routes through AI plugins. That path fits teams whose main workload is API traffic and whose AI calls are part of a broader API gateway deployment.
AISIX is for teams whose main workload is AI traffic. It manages provider keys, model aliases, caller API keys, budgets, routing, policy, and AI usage telemetry as first-class resources instead of route-level plugin settings.
Read next
From First Request to Production
Start with one local request, then move through the concepts, proxy APIs, provider setup, and operations checks that make the gateway ready for real teams.