REST + GraphQL, sandbox keys and open-source clients. Docs, SDKs and tools built for developers.
Every endpoint, request and response — with real-world examples.
Interactive schema explorer for high-performance client apps.
Instant test-mode API keys with 100% feature parity to production.
TypeScript, Python, Go, Rust — open source, tree-shakable.
import { KyrionClient } from "@kyrion/sdk";
const kyrion = new KyrionClient({
apiKey: process.env.KYRION_API_KEY,
network: "sandbox",
});
// Modular payment — any provider, one interface
const checkout = await kyrion.payments.createCheckout({
provider: "crypto", // or "stripe" | "paypal"
amount: 1240,
currency: "USD",
crypto_asset: "USDC",
return_url: "https://acme.com/success",
});
console.log(checkout.qr_data);Made with Emergent