Accept crypto payments, in minutes.
This is a live integration sandbox for the CryptoFlix API. Create a real test invoice below and walk the full payment flow — exactly what your store would do. Funds forward directly to your own wallets; CryptoFlix never holds them.
Try a payment
Pick a coin and amount — we’ll mint a real invoice.
How it works
- 1
You create an invoice
Your server POSTs to /api/invoices with a coin + amount. CryptoFlix returns a fresh address + QR.
- 2
Customer pays on your site
Your own branded checkout shows the address, QR and live status — no redirect off your domain. Funds forward straight to your wallet.
- 3
You get confirmation
CryptAPI confirms on-chain; a reconcile worker backstops any missed webhook. Your server polls /status.
The call your server makes
Full docs →curl -X POST https://crypto.flixdrama.xyz/api/invoices \
-H 'content-type: application/json' \
-d '{
"ticker": "btc",
"amount": "5",
"reference": "order-1042",
"successUrl": "https://crypto-test.imagelens.xyz/success"
}' Create invoices server-side — the API is CORS-locked to your dashboard, and you never want amounts set by the browser.
Supported coins