AI Gateway
Checking...
Admin Panel
Models
Active models
Health
Gateway status
Endpoint
Base URL
Available Models
Manage →

Loading models...

Quick Start
# Chat completion
curl http://localhost:4000/v1/chat/completions \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "your-model",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'