⚡ AI Gateway

OpenAI-compatible API with free model routing

POST /v1/chat/completions
GET /v1/models

Quick Start

curl -X POST https://api-endpoint.aidevspace.online/v1/chat/completions \
  -H "Authorization: Bearer sk-YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openrouter/free",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'