A Taiwanese startup wants to integrate Claude into their customer service system. Developer workflow:
**Step 1**: Create two API Keys at console.anthropic.com: "customer-service-prod" and "customer-service-dev," each with independent purposes.
**Step 2**: In Railway's environment variables, add `ANTHROPIC_API_KEY = sk-ant-...(prod Key)` — only the production server can access this Key.
**Step 3**: Create a local `.env` file with the dev Key; confirm `.env` is in `.gitignore` and won't be pushed to GitHub.
**Step 4**: Set monthly spend alerts at console.anthropic.com ($100 triggers notification, $200 auto-revokes) to prevent unexpected charges.
Three months later, a colleague accidentally pastes the dev Key in a group chat. The developer immediately logs into console, revokes the dev Key, generates a new one, updates `.env` — entire process under 5 minutes, prod Key completely unaffected. This is the real value of multi-key management.