Gateway online

One gateway.
Multiple AI providers.

Noveum AI Gateway provides an OpenAI-compatible request surface with provider routing, streaming, telemetry, and optional Nova Guard enforcement.

API endpoint

Send OpenAI-compatible chat requests to /v1/chat/completions. Select the upstream with the x-provider header.

Release

Version 2.0.1
Runtime cloudflare-worker
Status /health

Quick start

curl "$GATEWAY_URL/v1/chat/completions" \
  -H "Authorization: Bearer $PROVIDER_API_KEY" \
  -H "x-provider: openai" \
  -H "content-type: application/json" \
  -d '{"model":"gpt-4o-mini","max_tokens":32,"messages":[{"role":"user","content":"Hello"}]}'