Quickstart

The gateway speaks the OpenAI wire format — point any OpenAI SDK at it.

  1. 1Sign in with your Neviri account and create an API key (nvai_…).
  2. 2Set the base URL to https://api.neviri.ai/v1 and send your key as a bearer token.
  3. 3Call any model by its id.
curl https://api.neviri.ai/v1/chat/completions \
  -H "Authorization: Bearer $NEVIRI_AI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "neviri/flagship-chat",
    "messages": [{ "role": "user", "content": "Hello, Neviri." }]
  }'

Streaming, embeddings, error codes and per-language SDK guides arrive with the gateway release.