cd /news/developer-tools/claude-code-openrouter-the-setup-gui… · home topics developer-tools article
[ARTICLE · art-82075] src=dev.to ↗ pub= topic=developer-tools verified=true sentiment=· neutral

Claude Code + OpenRouter: The Setup Guide That Actually Explains Things

Anthropic's Claude Code terminal coding agent can be configured to route requests through OpenRouter, a model switchboard, by setting environment variables. The setup guide explains how to install Claude Code, obtain an OpenRouter API key, and configure shell files to enable the integration, with a note that OpenRouter's Anthropic-format endpoint ensures compatibility.

read3 min views2 publishedJul 31, 2026

So you have heard people rave about Claude Code. Maybe you have also heard people mention OpenRouter in the same breath, usually followed by some combination of environment variables and a screenshot of a terminal. If you are new to any of this, it can feel like everyone skipped a step and jumped straight to the jargon.

This guide is that missing step. We will go slow where it matters, explain the confusing bits, and by the end you will actually understand what is happening instead of just copy pasting commands and hoping.

** Claude Code** is Anthropic's terminal coding agent. It reads your files, edits code, runs commands. By default it talks straight to Anthropic's servers.

** OpenRouter** is a switchboard. It a switchboard for AI models. Instead of every app needing its own separate connection to every AI provider, OpenRouter sits in the middle and lets you route requests to different models through one account, one dashboard, and one place to watch your spending. (Even free and open source models!)

You can check out all the models provided by OpenRouter here.

Important honesty check: OpenRouter's own docs say this combo is only guaranteed to work well with Anthropic's own models. You're not really swapping Claude's brain out here, you're mostly rerouting the pipe it talks through.

Claude Code sends requests in Anthropic's format. Some servers only understand OpenAI's format instead. Point Claude Code at one of those by mistake and you get garbled errors, like mailing a French letter to someone who only reads Spanish.

OpenRouter has an endpoint that speaks Anthropic's format natively, so no translation step, no separate proxy needed.

This question stops more beginners than anything else in this guide, and it is a fair one. Here is how to check in ten seconds.

Open your terminal and type this, then press enter:

echo $SHELL

You will get one of these back:

/zsh

, like /bin/zsh

, means you are using zsh. This is the default on modern Macs./bash

, like /bin/bash

, means you are using bash. This is common on older Macs, many Linux setups, and Windows Subsystem for Linux (WSL).That is it. Whichever one shows up tells you which file to edit later:

~/.zshrc

~/.bashrc

1. Install Claude Code

curl -fsSL https://claude.ai/install.sh | bash

2. Grab an OpenRouter API key at openrouter.ai, and load some credits.

3. Add these to your shell file (the one you found above), then restart your terminal:

export OPENROUTER_API_KEY="your-openrouter-api-key"
export ANTHROPIC_BASE_URL="https://openrouter.ai/api"
export ANTHROPIC_AUTH_TOKEN="$OPENROUTER_API_KEY"
export ANTHROPIC_API_KEY=""

The last line is deliberate, not a typo. An old value there can cause confusing auth errors. Also, put these lines near the end of the file, otherwise if OPENROUTER_API_KEY

gets redefined later, the token silently goes empty.

Prefer keeping it per-project? Use a settings file instead:

{
  "env": {
    "ANTHROPIC_BASE_URL": "https://openrouter.ai/api",
    "ANTHROPIC_AUTH_TOKEN": "<your-openrouter-api-key>",
    "ANTHROPIC_API_KEY": ""
  }
}

4. Clear any old login

/logout

Then fully restart Claude Code.

5. Launch it

cd /path/to/your/project
claude

6. Confirm it worked

/status

Should show ANTHROPIC_AUTH_TOKEN

and the OpenRouter base URL. Check the activity dashboard too, it's oddly satisfying watching requests show up.

You're ready to roll. Claude Code with a lineup of models waiting for their turn!

Install Claude Code, get an OpenRouter key, set four env vars in the right file, /logout

, relaunch, /status

to confirm. Ten minutes, done. Stick to Claude models first, then go exploring once you know what "working" looks like.

── more in #developer-tools 4 stories · sorted by recency
── more on @anthropic 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/claude-code-openrout…] indexed:0 read:3min 2026-07-31 ·