checking status...

OpenAI-compatible gateway to Hermes.

Persona-locked agent with tools, memory, and streaming. Satu base URL, satu key — pakai dari CLI mana aja.

curl https://api.codecrack.dev/v1/chat/completions \
  -H "Authorization: Bearer cc_live_•••" \
  -H "Content-Type: application/json" \
  -d '{"model":"hermes-agent","messages":[{"role":"user","content":"hello"}],"stream":true}'

powered by hermes-agent v0.16.0 · claude opus 4.7 · ~6.6k token system prompt baked in

OpenAI-compatible

Drop-in replacement. Pakai SDK atau CLI yang udah lo kenal.

Hermes-powered

Persona-locked agent with tools, memory, and context baked in.

Pay-as-you-go

No subscription. Top up credits, bayar per token yang lo pakai.

Streaming SSE

Real-time token streaming. Sama persis kayak OpenAI API.

Use the openai SDK.
Nothing to learn.

Ganti base_url dan api_key, selesai. Compatible sama Python, Node, Go, Rust — semua SDK yang support OpenAI format.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.codecrack.dev/v1",
    api_key="cc_live_•••"
)

stream = client.chat.completions.create(
    model="hermes-agent",
    messages=[{"role": "user", "content": "audit lib auth gua"}],
    stream=True,
)

for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="")

Simple pricing

$3

per 1M input tokens

$15

per 1M output tokens

$10

minimum top-up

No subscription. Pay for what you use. See full breakdown →