Build with qynio
One OpenAI-compatible key for frontier models — 0% platform fees, no KYC, paid in USDG on Robinhood Chain. Be calling in under two minutes.
1 · Get an API key
No account needed: open api.qyn.io/get-key and the page assigns you a unique deposit amount. Send exactly that amount of USDG on Robinhood Chain (chain ID 4663) to the address shown. The moment it confirms, your key and permanent dashboard link appear on the page — no email, no signup.
Prefer an account? Sign in with your wallet (Robinhood Wallet, MetaMask, WalletConnect) to keep all your keys and balances in one place.
2 · Make your first call
curl https://api.qyn.io/v1/chat/completions \
-H "Authorization: Bearer qyn-live-…" \
-H "Content-Type: application/json" \
-d '{"model":"anthropic/claude-sonnet-5","messages":[{"role":"user","content":"Hello!"}]}'
Drop-in with the OpenAI SDK — change only the base URL and key:
import OpenAI from "openai";
const client = new OpenAI({
apiKey: "qyn-live-…",
baseURL: "https://api.qyn.io/v1",
});
const res = await client.chat.completions.create({
model: "anthropic/claude-sonnet-5",
messages: [{ role: "user", content: "Hello!" }],
});
3 · Pricing
Pass-through token pricing at 30–90% of OpenRouter list, with a hard 0% platform fee — we never take a cut of your deposit or your spend. Full catalog: /models or GET /v1/models.
Topping up
- Deposits are USDG on Robinhood Chain, credited 1:1 as USD balance. Credit never expires.
- Every key has a permanent dashboard link (
/d/…) with balance, usage, and top-up address — treat it like a secret. - Signed-in accounts see all keys at api.qyn.io/app.
Details
- Base URL:
https://api.qyn.io/v1(legacy/v3/compatpaths also work) - Non-streaming today — send
"stream": false. Streaming is on the roadmap. - Errors are OpenAI-shaped. Full spec: API reference.