Skip to main content

Base URL

All Oximy Gateway requests should be made to:
https://gateway.oximy.com/v1

Gateway Endpoint Types

Oximy Gateway provides two types of endpoints:

Proxy AI Endpoints

Gateway’s primary functionality is proxying requests to AI providers with intelligent guardrails. These endpoints forward requests to OpenAI, Anthropic, Google, and other AI providers:
  • /v1/chat/completions - Chat completions (OpenAI-compatible)
  • /v1/embeddings - Text embeddings
  • /v1/audio/* - Audio transcription and generation
  • All standard OpenAI-compatible endpoints
Use proxy endpoints when: You want Gateway to handle AI requests with built-in protection.

Standalone Validation Endpoints

Gateway also provides validation-only endpoints that check text against guardrails without proxying to any AI provider:
  • /v1/validate-text - Validate text against project guardrails
Use standalone validation when: You want to validate text independently (pre-validation, output validation, batch processing, custom workflows).
All /v1/* endpoints are AI provider proxy endpoints, except custom validation endpoints like /v1/validate-text which don’t proxy to any AI provider.

OpenAI Compatibility

Gateway’s proxy endpoints are fully compatible with the OpenAI API specification. This means:
  • Drop-in replacement for OpenAI SDKs
  • Same endpoints (/chat/completions, /embeddings, etc.)
  • Same request/response format
  • Same streaming support

Authentication

Oximy Gateway uses a dual-key authentication system:
  1. Oximy credentials (required headers)
  2. AI provider credentials (your OpenAI, Anthropic, etc. keys)
See the Headers & Configuration page for complete authentication details.

Rate Limits

Rate limits are inherited from your AI provider (OpenAI, Anthropic, etc.). Oximy Gateway adds minimal overhead and doesn’t impose additional rate limits.

Supported Providers

Gateway supports 20+ AI providers through a unified interface:
  • OpenAI (GPT-4, GPT-3.5, DALL-E, Whisper)
  • Anthropic (Claude-3, Claude-2)
  • Google (Gemini Pro, PaLM)
  • Azure OpenAI
  • Together AI
  • Cohere
  • Perplexity
  • Groq
  • And many more…