Jailbreaken

API

Same model, your own code.

Jailbreaken is an OpenAI-compatible API. Point any client at it: the OpenAI SDK, OpenRouter-style tools, Cursor, curl. Uncensored answers, no content filter layer, streaming.

You pay in $JB: 1 $JB = 1 token, prompt and completion counted alike. No subscription, no card.

How $JB works

  1. 1. Sign in and link the wallet you'll send from. Deposits are matched to the sending address.
  2. 2. Send $JB on Robinhood Chain (chain id 4663) to the deposit address below. Whole tokens only; dust is ignored.
  3. 3. Credits land within about a minute. Every API call debits exactly the tokens it used.
Robinhood Chain · id 4663ERC-201 token = 1 $JB

$JB contract

announced at launch

deposit address

opens with the token

Your account

Use it

Base URL https://jailbreaken.chat/v1 · model jailbreaken

curl https://jailbreaken.chat/v1/chat/completions \
  -H "Authorization: Bearer jb_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"jailbreaken","stream":true,"messages":[{"role":"user","content":"Explain how HTTPS actually works."}]}'

Python, official OpenAI SDK

from openai import OpenAI
client = OpenAI(base_url="https://jailbreaken.chat/v1", api_key="jb_YOUR_KEY")
r = client.chat.completions.create(model="jailbreaken", messages=[{"role": "user", "content": "hi"}])
print(r.choices[0].message.content)

JavaScript

import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://jailbreaken.chat/v1", apiKey: "jb_YOUR_KEY" });
const r = await client.chat.completions.create({ model: "jailbreaken", messages: [{ role: "user", content: "hi" }] });
console.log(r.choices[0].message.content);

Limits: 60 requests per minute per key, five active keys, replies capped at 8k tokens. Errors follow OpenAI's shape; a 402 means top up. Balance below 100 tokens can't start a call.