ClaudeCheap

Integrations

Connect any Anthropic-compatible client

The pattern is always the same: set the base URL to our endpoint, drop in your ClaudeCheap key, and keep your existing code.

Base URLhttps://api.cipherdatalabs.net

Claude Code

bash

Anthropic's terminal coding agent.

bash
export ANTHROPIC_BASE_URL="https://api.cipherdatalabs.net"
export ANTHROPIC_API_KEY="cc-your-key-here"

claude

Cursor

text

The AI-first code editor.

text
Settings -> Models -> Anthropic API

  Override base URL: https://api.cipherdatalabs.net
  API key:          cc-your-key-here

Enable the Claude models you want, then code as usual.

Kilo

json

Open-source agentic coding in your editor.

json
{
  "provider": "anthropic",
  "baseUrl": "https://api.cipherdatalabs.net",
  "apiKey": "cc-your-key-here",
  "model": "claude-sonnet-4"
}

TypeScript SDK

typescript

@anthropic-ai/sdk for Node and the browser.

typescript
import Anthropic from "@anthropic-ai/sdk";

const client = new Anthropic({
  baseURL: "https://api.cipherdatalabs.net",
  apiKey: process.env.CLAUDECHEAP_API_KEY,
});

const message = await client.messages.create({
  model: "claude-sonnet-4",
  max_tokens: 1024,
  messages: [{ role: "user", content: "Hello from ClaudeCheap" }],
});

Python SDK

python

The official anthropic package.

python
import os
from anthropic import Anthropic

client = Anthropic(
    base_url="https://api.cipherdatalabs.net",
    api_key=os.environ["CLAUDECHEAP_API_KEY"],
)

message = client.messages.create(
    model="claude-sonnet-4",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello from ClaudeCheap"}],
)

curl

bash

Raw HTTP, no SDK required.

bash
curl https://api.cipherdatalabs.net/v1/messages \
  -H "x-api-key: cc-your-key-here" \
  -H "anthropic-version: 2023-06-01" \
  -H "content-type: application/json" \
  -d '{
    "model": "claude-sonnet-4",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "Hello from ClaudeCheap"}]
  }'

Need a key?

Every snippet uses a placeholder key in the cc- format. Reach out and we will get you a live key and a starting balance.