Powered by ClaudeНа базе Claude

Every Claude model,
one elegant endpoint.
Все модели Claude —
один изящный endpoint.

Top up with Telegram Stars, mint an API key in seconds, and reach Opus, Sonnet and Haiku through a single Anthropic-native interface. You pay only for the tokens you use. Пополняй через Telegram Stars, создавай API-ключ за секунды и обращайся к Opus, Sonnet и Haiku через единый Anthropic-нативный интерфейс. Платишь только за использованные токены.

Why ClaudesPlanПочему ClaudesPlan

Built for people who just want to ship.Для тех, кто хочет делать, а не возиться.

Everything you need to build on Claude — and nothing you don't.Всё, что нужно для работы с Claude — и ничего лишнего.

Pay with StarsОплата через Stars

Top up inside Telegram. Credit lands on your balance the moment payment clears.Пополнение прямо в Telegram. Баланс зачисляется сразу после оплаты.

Keys in secondsКлючи за секунды

Create and revoke API keys in the bot. Use them exactly like an Anthropic key.Создавай и отзывай ключи в боте. Используй их как обычный ключ Anthropic.

Only ClaudeТолько Claude

Opus, Sonnet, Haiku, Fable — the whole family, one endpoint, live pricing.Opus, Sonnet, Haiku, Fable — вся линейка, один endpoint, актуальные цены.

Anthropic-nativeAnthropic-нативный

A drop-in /v1/messages endpoint. Works with the official SDK, curl and your existing tools.Готовый /v1/messages. Работает с официальным SDK, curl и твоими инструментами.

Pay per tokenОплата за токены

Metered from real usage. No subscriptions, no minimums — spend exactly what you use.Тарификация по реальному расходу. Без подписок и минималок — платишь ровно за использованное.

In your languageНа твоём языке

The bot and docs are fully bilingual. Switch between English and Russian in a tap.Бот и документация полностью двуязычны. Переключение EN / RU в один тап.

Models & pricingМодели и цены

Transparent pricing, per million tokens.Прозрачные цены — за миллион токенов.

See the rate before you spend a thing. Billed on actual token usage — nothing more.Видно ставку до оплаты. Тарификация по фактическому расходу токенов — ничего сверху.

ModelМодель ID InputВход OutputВыход
Claude Fable 5claude-fable-5$6.561$32.805
Claude Haiku 4.5claude-haiku-4-5$0.197$0.984
Claude Sonnet 4.6claude-sonnet-4-6$0.590$2.952
Claude Sonnet 5claude-sonnet-5$0.394$1.968
Claude Opus 4.6claude-opus-4-6$0.984$4.921
Claude Opus 4.7claude-opus-4-7$0.984$4.921
Claude Opus 4.8claude-opus-4-8$0.984$4.921

Prices update live from the catalogue. Billed per actual token usage.Цены обновляются автоматически из каталога. Тарификация по фактическому расходу.

QuickstartБыстрый старт

From zero to your first response in a minute.От нуля до первого ответа — за минуту.

1

Open the botОткрой бота

Press Start and top up with Stars.Нажми Start и пополни через Stars.

2

Create a keyСоздай ключ

Open API keys and mint a new one.Открой API-ключи и создай новый.

3

Call ClaudeВызови Claude

Point your SDK at the base URL below.Направь SDK на base URL ниже.

# Python from anthropic import Anthropic client = Anthropic( api_key="sk-tgai-...", base_url="https://claudeplan.lol", ) msg = client.messages.create( model="claude-sonnet-5", max_tokens=256, messages=[{"role": "user", "content": "Hello, Claude"}], ) print(msg.content[0].text)