Home / Docs / Introduction

Introduction

What ClaudeAPIKey.dev is, which endpoints it speaks, and how it differs from calling Anthropic directly.

ClaudeAPIKey.dev is an Anthropic-compatible API gateway. You point an existing SDK at one base URL, use one key, and reach Claude, GPT, Gemini and MiniMax models through the request format you already use.

Base URLhttps://aiprimetech.io
API formatsAnthropic Messages and OpenAI Chat Completions
Authx-api-key (Anthropic style) or Authorization: Bearer (OpenAI style)
Models9, across Anthropic, OpenAI, Google and MiniMax
BillingPrepaid credits, or a flat-rate unlimited plan
Setup timeTwo environment variables

What you get

AreaWhat it means
Drop-in compatibilityThe same request bodies, the same response shapes, the same streaming events as the official APIs. You change the base URL, not your code.
One key, many vendorsA single credential reaches Claude, GPT, Gemini and MiniMax. No separate accounts or dashboards per provider.
Both wire formats/v1/messages for Anthropic-style clients, /v1/chat/completions for OpenAI-style clients — against the same models.
Tool compatibilityClaude Code, Cursor, Cline, Aider, Zed, Continue, OpenCode and anything else that honours a custom base URL.
Pay-as-you-goPrepaid credits that do not expire, or a flat-rate unlimited plan for a fixed window.

How it differs from calling Anthropic directly

Functionally it should not differ at all — that is the design goal. The differences that matter are commercial and operational:

We are a reseller of API capacity, not Anthropic. If you need a contractual relationship with Anthropic itself, an enterprise SLA, or data-processing terms signed by Anthropic, use the official API. ClaudeAPIKey.dev is an independently operated API gateway. "Claude" and "Anthropic" are trademarks of Anthropic; we are not affiliated with, endorsed by, or sponsored by Anthropic, OpenAI or Google.

Which format should I use?

Use whichever your tool already speaks — both hit the same models and cost the same.

If your tool is…UseAuth header
Claude Code, Anthropic SDK, Cline, any Claude clientPOST /v1/messagesx-api-key
Cursor, Continue, OpenAI SDK, LangChain, LiteLLMPOST /v1/chat/completionsAuthorization: Bearer

Next steps