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

shell
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

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
curl {{BASE_URL}}/chat/completions \
  -H "Authorization: Bearer {{KEY}}" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "{{MODEL}}",
    "messages": [{"role": "user", "content": "Say hello"}]
  }'