Coding agents

Every AI coding tool that speaks the OpenAI or Anthropic API works with Depaza. Point it at our endpoint, give it your API key, and pick a model.

Set up once

Enter your key and pick a model. Every config block across these pages fills itself in with your real values. Get a key from the API Console.

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.

Which endpoint

Two endpoints, depending on what the tool speaks. Most tools want OpenAI. Claude Code wants Anthropic.

EndpointAuth
OpenAI-compatible https://depaza.eu/v1 Authorization: Bearer dpz_live_…
Anthropic-compatible https://depaza.eu ANTHROPIC_AUTH_TOKEN / x-api-key

Choosing a model

id
core Default. Everyday agent work.
coder Tool-heavy coding loops.
max Harder multi-file changes and deeper reasoning.
advanced Hardest problems. 3× tokens, 16384 max output.
lite Fast and cheap. Haiku stand-in.

IDs are lowercase and have no vendor prefix. Tools that ask for a context window by hand should use 128000, and max output 8192 (16384 for advanced).

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