API endpoint
Send OpenAI-compatible chat requests to /v1/chat/completions. Select the upstream with the x-provider header.
Noveum AI Gateway provides an OpenAI-compatible request surface with provider routing, streaming, telemetry, and optional Nova Guard enforcement.
Send OpenAI-compatible chat requests to /v1/chat/completions. Select the upstream with the x-provider header.
Version 2.0.1
Runtime cloudflare-worker
Status /health
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"}]}'