Claude Opus 4.7 + Sonnet 4.6 + GPT-5.5 — fino a 7,7× di valore
Prepaga i crediti, collega Claude Code / Codex / Cursor — ogni credito va 7,7× più lontano. Senza abbonamento, senza cap mensile.
Quali crediti vengono consumati?
Una sola API key vale per entrambi. L'instradamento è deciso dal modello che chiami.
Claude Opus 4.7, Sonnet 4.6, GPT-5.5, Gemini 3.5 Thinking, Gemini 3.5 Fast attingono prima ai Coding Credits (FIFO), poi passano ai General Credits se i Coding Credits si esauriscono.
Immagine, video, audio, 3D e tutti gli altri LLM attingono solo ai General Credits. I Coding Credits restano riservati ai workload di coding.
Scegli un pacchetto
Acquisto una tantum. I crediti scadono dopo 365 giorni dall’acquisto.
I crediti scadono dopo 365 giorni. I crediti coding sono vincolati ai 3 modelli — non possono essere spesi su video / immagini / altri LLM.
Su quali modelli funzionano?
Esattamente tre famiglie. Hardcoded — non configurabile.
Quanto vale ogni credito
Stessi modelli upstream, stessi token. Molto più valore per dollaro.
| Modello | Noi $ / MTok (input / output) | Tariffa API pubblica | Il tuo moltiplicatore |
|---|---|---|---|
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% |
Per milione di token. Nel coding domina l’output — il valore è lì.
Come si usa
Collega Hypereal a qualsiasi tool compatibile OpenAI o 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
Il CLI ufficiale Claude Code chiama /v1/messages. Puntalo a Hypereal e fissa Opus o 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 usa /v1/chat/completions. Cambia OPENAI_BASE_URL a Hypereal e fissa 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 accetta qualsiasi endpoint compatibile OpenAI. Sovrascrivi l’host in 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 — tutti accettano variabili 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 funziona con qualsiasi endpoint OpenAI-compatible. Configura una volta e via.
# 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
Per agent e script: chiama /v1/messages direttamente con la tua 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."}]
}'
