Get Depaza running in your editor
Customers stall on the first five minutes: which base URL, which header, which model id. Paste a key once below, copy a filled-in config, or run the one-liner and type claude.
Claude Code in one line
curl -fsSL https://depaza.eu/install-claude.sh | sh -s -- {{KEY}}
claude
Create an API key — API Console → API keys. Keys look like dpz_live_… and are shown once.
Depaza API key
Model
Your key stays in this browser (local storage) and is sent only to depaza.eu. Test connection sends one real, billed or metered chat request. Don’t do this on a shared machine.
Two endpoints
| Endpoint | Auth header | |
|---|---|---|
| OpenAI-compatible | https://depaza.eu/v1 |
Authorization: Bearer dpz_live_… |
| Anthropic-compatible | https://depaza.eu |
x-api-key: dpz_live_… or ANTHROPIC_AUTH_TOKEN |
Pick your tool
Claude Code
CLI and VS Code extension
Cursor
Model override in settings
opencode
Custom provider block
GitHub Copilot
Custom endpoint in VS Code
Cline
VS Code agent
Roo Code
VS Code agent
Kilo Code
VS Code agent
Zed
Editor with built-in agent
aider
Terminal pair programmer
goose
Block’s terminal agent
Continue
VS Code & JetBrains
Codex CLI
OpenAI Codex, no OpenAI login
Windsurf
Via Cline or Roo Code
Vercel AI SDK
Build your own agent
API reference
Chat completions, tools, keys
Verify before you configure
If a tool misbehaves, check the API directly first. This is the same request every OpenAI-compatible client above makes.
curl {{BASE_URL}}/chat/completions \
-H "Authorization: Bearer {{KEY}}" \
-H "Content-Type: application/json" \
-d '{
"model": "{{MODEL}}",
"messages": [{"role": "user", "content": "Say hello"}]
}'