Claude Opus 4.7 + Sonnet 4.6 + GPT-5.5 — до 7,7× ценности
Заплатите за кредиты заранее, подключите Claude Code / Codex / Cursor — каждый кредит идёт в 7,7× дальше. Без подписки, без месячного лимита.
Какие кредиты тратятся?
Один API-ключ работает для обоих. Маршрутизация определяется вызываемой моделью.
Claude Opus 4.7, Sonnet 4.6, GPT-5.5, Gemini 3.5 Thinking, Gemini 3.5 Fast сначала расходуют Coding Credits (FIFO), а затем переливаются в General Credits, если Coding Credits закончились.
Изображения, видео, аудио, 3D и все остальные LLM расходуют только General Credits. Coding Credits остаются зарезервированы для задач кодинга.
Выберите пакет
Разовая покупка. Кредиты сгорают через 365 дней после покупки.
Кредиты сгорают через 365 дней. Coding-кредиты привязаны к 3 моделям — потратить на видео / изображение / другие LLM нельзя.
На каких моделях работают?
Ровно три семейства. Захардкожено в коде — не настраивается.
Что покупает каждый кредит
Те же upstream-модели, те же токены. Значительно больше ценности за доллар.
| Модель | У нас $ / MTok (in / out) | Публичная цена API | Ваш множитель |
|---|---|---|---|
Claude Opus 4.7 / 4.6 | $3.40 / $16.96 | $15.00 / $75.00 | −77% |
Claude Sonnet 4.6 | $0.68 / $3.40 | $3.00 / $15.00 | −77% |
GPT-5.5 | $0.42 / $2.52 | $1.20 / $7.20 | −65% |
Gemini 3.5 Thinking | $0.90 / $5.40 | $1.50 / $9.00 | −40% |
Gemini 3.5 Fast | $0.90 / $5.40 | $1.50 / $9.00 | −40% |
За 1 млн токенов. В кодинге доминирует output — там и ценность.
Как использовать
Подключите Hypereal к любому инструменту, говорящему через API, совместимое с OpenAI или Anthropic.
Any tool that speaks the OpenAI or Anthropic API works — set the base URL to hypereal.cloud and paste your key. Setup snippets below.
Claude Code
Официальный Claude Code CLI от Anthropic ходит в /v1/messages. Укажите Hypereal и закрепите Opus или Sonnet.
# 1. Get your API key
# https://hypereal.cloud/manage-api-keys
# 2. Point Claude Code at Hypereal (Anthropic-compatible endpoint).
# NOTE: do NOT include /v1 — the Anthropic SDK appends /v1/messages
# itself. Setting the URL to .../v1 produces /v1/v1/messages → 404.
export ANTHROPIC_BASE_URL="https://api.hypereal.cloud"
export ANTHROPIC_API_KEY="ck_..." # your Hypereal key
# 3. Pin a coding-plan model (opus 4.7 or sonnet 4.6)
export ANTHROPIC_MODEL="claude-opus-4-7"
# 4. Run
claudeOpenAI Codex CLI
OpenAI Codex CLI использует /v1/chat/completions. Установите OPENAI_BASE_URL на Hypereal и закрепите GPT-5.5.
export OPENAI_BASE_URL="https://hypereal.cloud/v1"
export OPENAI_API_KEY="ck_..."
export OPENAI_MODEL="gpt-5.5"
codex --provider openaiCursor
Cursor принимает любой OpenAI-совместимый endpoint. Переопределите host в Settings → Models.
# Cursor → Settings → Models → "Add OpenAI-compatible"
# Base URL: https://hypereal.cloud/v1
# API Key: ck_...
# Model: gemini-3.5-thinking (or gpt-5.4 / claude-sonnet-4-6)
#
# Enable "Override OpenAI" in the same panel so Cursor routes
# completions through Hypereal instead of api.openai.com.
#
# Note: Cursor BYOK currently rejects gpt-5.5
# (https://forum.cursor.com/t/gpt-5-5-byok-not-working/160004/15).
# Use the LiteLLM workaround if you need gpt-5.5 in Cursor:
# pip install "litellm[proxy]"
# OPENAI_API_BASE=https://api.hypereal.cloud/v1 \
# OPENAI_API_KEY=ck_... \
# python -m litellm.proxy.proxy_cli --model gpt-5.5
# Then point Cursor at http://localhost:4000/v1 instead.OpenCode / Cline / Aider
OpenCode, Cline (VS Code), Aider — все принимают ANTHROPIC_API_BASE / API_KEY через env или настройки.
# OpenCode / Cline (VS Code) — Anthropic-compatible.
# Cline appends /v1/messages itself, so omit /v1 here.
{
"anthropic.baseURL": "https://api.hypereal.cloud",
"anthropic.apiKey": "ck_...",
"anthropic.model": "claude-opus-4-7"
}
# Aider uses the Anthropic SDK underneath — same rule:
# do NOT add /v1 to ANTHROPIC_API_BASE.
export ANTHROPIC_API_BASE="https://api.hypereal.cloud"
export ANTHROPIC_API_KEY="ck_..."
aider --model anthropic/claude-opus-4-7Hermes Agent
Hermes Agent работает с любым OpenAI-совместимым endpoint. Настройте один раз и запускайте.
# Hermes Agent supports OpenAI-compatible endpoints out of the box.
hermes config set provider openai-compatible
hermes config set base_url https://hypereal.cloud/v1
hermes config set api_key ck_...
hermes config set model gemini-3.5-fast
hermes run "Refactor auth.ts to use jose"Raw curl
Для агентов и скриптов: дёргайте /v1/messages напрямую со своим API-ключом.
curl https://hypereal.cloud/v1/messages \
-H "x-api-key: ck_..." \
-H "content-type: application/json" \
-H "anthropic-version: 2023-06-01" \
-d '{
"model": "claude-opus-4-7",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "Write a Python quicksort."}]
}'
