AI Gateway API Docs

Base URL

https://api.omanexa.com

Authentication

Authorization: Bearer YOUR_API_KEY

GET /v1/models

curl https://api.omanexa.com/v1/models

POST /v1/chat/completions

curl -X POST https://api.omanexa.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "deepseek-chat",
    "messages": [
      {
        "role": "user",
        "content": "Hello"
      }
    ]
  }'

Supported Models

Error Codes

Back to Dashboard