Agents
Use UURoute as the gateway endpoint for coding agents that support LiteLLM-style, OpenAI-compatible, or Anthropic-compatible configuration.
The examples in this section follow the LiteLLM agent setup pattern. Replace the LiteLLM proxy URL with the UURoute base URL:
https://api.uuroute.ai/Use your UURoute API key for authentication.
Supported Agents
Section titled “Supported Agents”| Agent | Guide | Base URL |
|---|---|---|
| Claude Code | Claude Code | https://api.uuroute.ai/ |
| Codex | Codex | https://api.uuroute.ai/ |
| OpenClaw | OpenClaw | https://api.uuroute.ai/ |
| OpenCode | OpenCode | https://api.uuroute.ai/ |
Common Settings
Section titled “Common Settings”| Setting | Value |
|---|---|
| Base URL | https://api.uuroute.ai/ |
| API key | Your UURoute API key |
| OpenAI-compatible models | For example gpt-5-codex |
| Anthropic-compatible models | For example claude-sonnet-4.5 or claude-opus-4.5 |
Verify Access
Section titled “Verify Access”Before configuring an agent, verify that your key can access UURoute:
export UUROUTE_API_KEY="<UUROUTE_API_KEY>"
curl https://api.uuroute.ai/v1/models \ -H "Authorization: Bearer $UUROUTE_API_KEY"If the request succeeds, use the same key in the agent-specific guides.