$5 free credits on signup

Claude API
for developers

OpenAI-compatible API proxy to Claude. Drop-in replacement - change one line of code.

quickstart.py
from openai import OpenAI

client = OpenAI(
    base_url="https://claude.ai-platform.space/v1",
    api_key="sk-cc-YOUR-KEY"
)

response = client.chat.completions.create(
    model="sonnet",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

Built for developers

Any Format, Any SDK

OpenAI SDK, Anthropic SDK, LangChain, LiteLLM, curl. Any format auto-detected. 50+ model aliases.

3 Claude Models

Haiku (fast), Sonnet (balanced), Opus (powerful). All available via one API.

Real-time Streaming

Token-by-token SSE streaming. Not fake chunking - real Claude stream events.

Pay Per Token

No subscriptions. Pay only for what you use. $5 free to start.

Persistent Sessions

Multi-turn conversations with memory. Claude remembers context between requests.

Dashboard

Real-time usage stats, request logs, billing. Full visibility into your API usage.

Our authorial idea

What makes us different from Anthropic API

Three developer tools you won't find in the official SDK — built to save you hours of boilerplate.

1 · Request Builder

JSON Constructor

Visually assemble Claude requests without diving into documentation. Pick model, tune params, add system prompt, attach tools — get a copy-paste-ready JSON payload.

  • Drag & drop tools and functions
  • Validation as you type
  • Preview full curl/Python/JS snippets
3 · Coming soon

Bring your own Claude account

Plug your personal Anthropic account into our SDK and use Constructor & Normalizer on top of your own Claude subscription — for testing and non-commercial work.

  • Zero double-billing
  • All developer tools, your quota
  • Full control over your keys

Built for developers who ship products on top of Claude — chatbots, AI agents, document analysis. We solve two specific pains: unstructured LLM output and slow prototyping of requests.

Simple pricing

Pay per token. No monthly fees. No commitments.

Haiku
Fast & affordable
$0.80 / 1M input
$4.00 / 1M output
~1,250 requests per $1
  • Fastest response (~1s)
  • Simple tasks, translations
  • Git commits, summaries
Opus
Most capable
$15.00 / 1M input
$75.00 / 1M output
~13 requests per $1
  • Deep reasoning (~5-30s)
  • Complex architecture
  • Research & debugging