Quickstart

Ozeye is an OpenAI-compatible API gateway for EU-hosted AI inference. Use your existing OpenAI client shape, point it at ozeye, and choose a model from the catalog.

1. Create account

Sign up at ozeye login and verify your email.

2. Add API key

Open Dashboard → API keys to create a key. Add credits from Billing before billable requests.

3. Call API

Use https://ozeye.ai/v1 and send your key as a bearer token.

First request

curl https://ozeye.ai/v1/chat/completions \
  -H "Authorization: Bearer $OZEYE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mistral-small-latest",
    "messages": [
      {"role": "user", "content": "Give me a GDPR summary in two sentences."}
    ]
  }'

Authentication

Authorization: Bearer $OZEYE_API_KEY
  • API keys are shown once when created. Store them in your server environment, not browser localStorage.
  • Keys can have request-rate limits, credit limits, reset intervals, and expiry dates.
  • Manage keys in Dashboard → API keys.
Billable requests require prepaid credits. If balance or key limit is insufficient, ozeye returns 402 Payment Required.