OpenAI-compatible gateway into multi-provider LLM capacity.
One key, one endpoint, crypto-only billing. No email. No KYC. No logs beyond usage accounting.
resolving live endpoint…
from openai import OpenAI
client = OpenAI(
base_url="…/v1",
api_key="sk-cyrus-…", # get a key below
)
r = client.chat.completions.create(
model="gemini-3.6-flash", # free tier
messages=[{"role":"user","content":"hello"}],
)
print(r.choices[0].message.content)
| model | price / Mtok |
|---|---|
| gemini-*-flash | FREE (promo) |
| gemini-*-pro | $2.00 |
| openrouter/<model> | $1.00 |
| gpt-* / claude-* | $4.00 (inventory-dependent) |
Free trial: POST <endpoint>/trial → instant key, all free-tier models, no payment.
Paid credits: USDC/USDT on Base, Arbitrum, Polygon, BSC or Ethereum. $2 minimum. Exact-amount matching — your key appears on the order status page ~30s after your transfer confirms.
BUY CREDITS → DOCS STATUSReal completion through our endpoint right now:
click RUN →
uses the shared trial key · free-tier model · rate-limited 20 req/min