Skip to main content
DEVELOPERS

Build with Arbitex Gateway.

One URL change is all it takes. Arbitex exposes an OpenAI-compatible API — point your existing SDK at the gateway, add your X-API-Key header, and every AI call is governed automatically.

Quick Start

Your first API call in under a minute.

Arbitex is OpenAI-compatible. Change your base URL to https://api.arbitex.ai/v1 and add an X-API-Key header. DLP inspection, policy enforcement, and audit logging activate automatically.

curl https://api.arbitex.ai/v1/chat/completions \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "X-API-Key: $ARBITEX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
SDKs & Libraries

Native SDK wrappers for your language.

All SDKs wrap the OpenAI-compatible REST API with typed clients, automatic retry, and built-in header injection. Or use any existing OpenAI SDK directly with a base URL override.

Python SDK

pip install arbitex
View on GitHub →

Node.js SDK

npm install @arbitex/sdk
View on GitHub →

Go SDK

go get github.com/arbitex/arbitex-go
View on GitHub →

Start building with Arbitex.

Get your API key, point your SDK at the gateway, and send your first governed request in minutes.