DEVELOPER INTEGRATION

Connect once. Select the safest cost route per request.

Use standard OpenAI or Anthropic SDKs, a UVOX gateway key and the optional X-UVOX-Mode header. Internal routing algorithms remain proprietary while route, fallback and savings evidence remain visible.

Standard SDKs

Use familiar OpenAI and Anthropic client libraries.

Secure access

Use separate, revocable UVOX keys for applications and environments.

Provider ownership

Keep your own provider account and billing relationship.

Operational reporting

Review original input, provider input, context avoided, cached input, costs, selected route and fallback status.

Integration examples

These examples disclose only the connection method, not UVOX’s internal optimisation logic.

OpenAI Python

from openai import OpenAI
client = OpenAI(
  api_key="YOUR_UVOX_KEY",
  base_url="https://api.uvox.tech/openai/v1",
  default_headers={"X-UVOX-Mode": "zero_loss_cache"},
)

Anthropic Python

from anthropic import Anthropic
client = Anthropic(
  api_key="YOUR_UVOX_KEY",
  base_url="https://api.uvox.tech",
  default_headers={"X-UVOX-Mode": "zero_loss_cache"},
)
Mode values: auto (recommended combined beta), maximum_savings (combined beta), zero_loss_cache (complete prompt content) and disabled (direct provider passthrough). All four modes are available to customer accounts by default. Unsafe combined requests fall back to Zero-Loss Cache.

Python helperNode.js helperPostman collection

What UVOX publishes

Customers receive the information required to integrate and operate the service safely.

Published

Endpoints, authentication, mode values, response headers, fallback behaviour, supported request formats, account controls, security practices and measured results.

Confidential

Optimisation algorithms, decision logic, orchestration methods, internal verification processes and engine architecture.

Integrate, test and measure.

Start with the free monthly allowance before connecting production traffic.

Start free

Verification headers

Zero-Loss Cache responses expose the evidence needed for independent checking.

X-UVOX-Mode: zero_loss_cache
X-UVOX-Route: cache_only
X-UVOX-Prompt-Content-Hash: <sha256>
X-UVOX-Upstream-Content-Hash: <sha256>
X-UVOX-Prompt-Content-Unchanged: true
X-UVOX-Verification-Status: verified-zero-loss
X-UVOX-Cached-Tokens: ...
X-UVOX-Cache-Write-Tokens: ...
X-UVOX-Verified-Savings-Amount: ...