Claude Opus 4.7 + Sonnet 4.6 + GPT-5.5 — giá trị lên đến 7,7×
Trả trước credit, kết nối Claude Code / Codex / Cursor — mỗi credit đi xa hơn 7,7×. Không gói đăng ký, không hạn mức tháng.
Loại credit nào sẽ bị trừ?
Một API key dùng cho cả hai. Việc trừ credit do model bạn gọi quyết định.
Claude Opus 4.7, Sonnet 4.6, GPT-5.5, Gemini 3.5 Thinking, Gemini 3.5 Fast trừ Coding Credits trước (FIFO), nếu hết thì rớt xuống General Credits.
Hình ảnh, video, audio, 3D và toàn bộ LLM khác chỉ trừ General Credits. Coding Credits được giữ riêng cho workload lập trình.
Chọn gói
Mua một lần. Credit hết hạn sau 365 ngày kể từ ngày mua.
Credit hết hạn sau 365 ngày. Coding credit bị khóa cho 3 model — không thể dùng cho video / ảnh / LLM khác.
Dùng được trên model nào?
Đúng ba dòng model. Hardcode trong code — không thể cấu hình.
Mỗi credit đi được bao xa
Cùng model upstream, cùng token. Giá trị trên mỗi đô la cao hơn rất nhiều.
| Model | Chúng tôi $ / MTok (in / out) | Giá API công khai | Hệ số của bạn |
|---|---|---|---|
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% |
Trên 1 triệu token. Coding nặng về output — giá trị nằm ở đó.
Cách dùng
Gắn Hypereal vào bất kỳ công cụ nào nói chuyện được với API OpenAI hoặc 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 chính thức của Anthropic gọi /v1/messages. Trỏ về Hypereal và ghim Opus hoặc 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 dùng /v1/chat/completions. Đổi OPENAI_BASE_URL sang Hypereal và ghim 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 chấp nhận mọi endpoint tương thích OpenAI. Ghi đè host trong 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 — tất cả đều nhận biến môi trường ANTHROPIC_API_BASE / API_KEY.
# 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 chạy với mọi endpoint OpenAI-compatible. Cấu hình một lần là xong.
# 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
Cho agent và script: gọi thẳng /v1/messages với API key.
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."}]
}'
