Skip to main content
The Onyx LLM Gateway gives applications one endpoint for the language models your organization has configured in Onyx. Requests use your Onyx identity, so model access and usage attribution stay in one place. Use the gateway when you want an application, automation, or coding tool to use organization-approved models without storing a separate provider key.
The LLM Gateway is available with Onyx Enterprise. An administrator must configure at least one visible language model before it can serve requests.

What the gateway provides

The gateway does not replace your model-provider configuration. An administrator still configures providers and decides which models are visible in Language Models. Onyx Admin Panel showing available language-model providers

Before you begin

You need all of the following:
  • An Onyx administrator has configured a language model and made it visible.
  • Your Onyx account has access to that model.
  • A Personal Access Token (PAT) with the LLM Gateway scope.
Create a Personal Access Token from Settings > Accounts & Access. Choose Limited access and select LLM Gateway. Treat the token as a password. Onyx shows it only once.
Use a scoped PAT for an application or local development. It limits the token to gateway requests while preserving the model access of the user who created it.

Gateway address

For a standard Onyx deployment, use:
Self-hosted deployments can expose the API at a different public path. Use the public API address for your deployment, followed by /gateway/v1. Every request uses a Bearer token:

Find an available model

The easiest way to find a model ID is in Settings > LLM Gateway. The section appears only when at least one model is visible and accessible to your account. Open a provider, then copy the ID beside the model that you want to use. The copied value already has the required format: Onyx LLM Gateway settings with an expanded provider and model IDs
For example, 12/gpt-5-mini means:
  • 12 is the Onyx ID for the configured provider.
  • gpt-5-mini is the model name configured for that provider.
Use the copied value exactly as the model value in your client. Do not replace the provider ID with the provider name. Use Settings to find a model ID for each client configuration.

OpenAI Chat Completions

Point OpenAI-compatible clients at the gateway URL. This example uses the official OpenAI JavaScript SDK.
TypeScript
The same request with stream: true uses server-sent events.

OpenAI Responses

The gateway also supports the OpenAI Responses API. Use the same base URL and model ID.
TypeScript
Gateway responses are stateless. Send the context that a later turn needs; do not rely on a previous response ID being stored by Onyx.

Anthropic Messages

For Anthropic-compatible clients, send requests to the gateway’s messages endpoint with the same Bearer token and model ID.
To estimate the input tokens for an Anthropic Messages request, send the same request shape to POST /messages/count_tokens.

Use with coding agents

Use the gateway with Claude Code or Codex to give coding-agent requests the same model access controls, usage attribution, and token limits as other gateway traffic.

Claude Code

Set the gateway’s parent endpoint as the Anthropic base URL, then use a Claude model ID from Settings:
Claude Code appends /v1/messages, which resolves to the gateway’s Anthropic Messages endpoint. Use a model ID from your own Settings page. Provider IDs differ by deployment.

Codex

Create a Codex profile at ~/.codex/onyx.config.toml:
Then export the PAT and start Codex with that profile:
The configured model must be an OpenAI-compatible model ID from Settings.

OpenCode

Add the gateway as an OpenAI-compatible provider in your project’s opencode.json:
Export a PAT before starting OpenCode:
The @ai-sdk/openai-compatible provider uses the gateway’s Chat Completions endpoint. Replace the example model with one from your Gateway Settings.

Usage and limits

Gateway requests use the calling user’s Onyx permissions. If the user loses access to a model, the gateway no longer exposes or accepts that model for the user. Administrators can review token use and estimated model cost in Admin Panel
Usage. They can also apply global, group, or user token limits there. Those limits apply before the gateway sends a generation request to a model provider.
Onyx Admin Panel controls for global, user, and group spending limits

Common errors

Next steps

Configure language models

Add providers and control which models are visible.

Create a Personal Access Token

Create and manage the token used by your application.