Step 01

Provision your diet.

One command sets up your account, stores your provider key, and configures routing.

bash
npx clawzempic

Interactive setup for any LLM client. Creates your account, validates your provider key, and gives you your Clawzempic API key.

bash
curl -sX POST https://api.clawzempic.ai/v1/signup \
  -H 'Content-Type: application/json' \
  -d '{"email": "[email protected]"}'

Raw API signup. Returns your API key and client ID. Then point your base URL to https://api.clawzempic.ai/v1.

Step 02

Re-point your traffic.

Our gateway handles the logic. You just change the base URL and add your keys.

HeaderRequirement
x-api-keyYour Clawzempic secret key
x-upstream-keyOpenRouter, Anthropic, or OpenAI key
x-upstream-provideranthropic | openai | openrouter
Step 03

Integration.

bash
curl -sX POST https://api.clawzempic.ai/v1/chat/completions \
  -H "x-api-key: sk-clwz-..." \
  -H "x-upstream-key: sk-ant-..."
python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.clawzempic.ai/v1",
    api_key="sk-clwz-..."
)
javascript
const openai = new OpenAI({
    baseURL: "https://api.clawzempic.ai/v1",
    apiKey: "sk-clwz-..."
});