Menu

Coding Agents

Last updated January 21, 2026

AI coding agents are transforming how developers write, debug, and refactor code. Route these agents through AI Gateway to get a single dashboard for spend tracking, access to any model, and automatic fallbacks, all while using the familiar interfaces of your favorite tools.

BenefitWithoutWith
Spend trackingSeparate dashboards per providerSingle unified view
Model accessLimited to agent's default models200+ models from all providers
BillingMultiple invoices, multiple accountsOne Vercel invoice
ReliabilitySingle point of failureAutomatic provider fallbacks
ObservabilityLimited or no visibilityFull request traces and metrics

Claude Code is Anthropic's agentic coding tool for the terminal. Configure it with environment variables:

export ANTHROPIC_BASE_URL="https://ai-gateway.vercel.sh"
export ANTHROPIC_API_KEY="your-ai-gateway-api-key"

Once configured, Claude Code works exactly as before, but requests route through the gateway. You can use any available model, not just Anthropic's.

See the Claude Code documentation for advanced configuration.

OpenAI Codex (also known as Codex CLI) is OpenAI's terminal-based coding agent. Configure it through its config file:

~/.codex/config.toml
[profiles.vercel]
provider = "openai"
model = "anthropic/claude-sonnet-4.5"
api_key_env_var = "AI_GATEWAY_API_KEY"
 
[providers.openai]
base_url = "https://ai-gateway.vercel.sh/v1"

Then use it with the Vercel profile:

codex --profile vercel "explain this codebase"

See the Codex documentation for setup details.

OpenCode is an open-source, terminal-based AI coding assistant with native support. Connect directly from within the tool:

opencode
> /connect
# Select "Vercel AI Gateway" and enter your API key

OpenCode automatically discovers available models and lets you switch between them on the fly.

See the OpenCode documentation for more features.

  1. Get an API key: Create one in the AI Gateway page
  2. Choose your agent: Pick from Claude Code, Codex, or OpenCode
  3. Configure the base URL: Point the agent to https://ai-gateway.vercel.sh
  4. Start coding: Use the agent as normal—all requests route through the gateway

Once your coding agents are connected, view usage in the Observability tab:

  • Spend by agent: See how much each tool costs
  • Model usage: Track which models your agents use most
  • Request traces: Debug issues with full request/response logs

Was this helpful?

supported.