See a live Payora checkout
Launch a real hosted checkout for a sample $1,000.00 invoice — pick any supported coin, watch the address, QR and countdown, and see the page confirm live. No account, no payment required.
No accountNothing to payA throwaway sample invoice
- Mode
- fiat — the payer picks the coin
- Payable for
- 7200 s · 2 hours
- Return to store
- payora.money/demo
- Language
- en · EN
Open the checkout your way
Each tile creates a fresh sample invoice and opens the real hosted checkout at pay.payora.money in the language of this page.
The demo mints a throwaway invoice on a real address. No payment is expected, and anything you send there is a real on-chain transfer — please don't.
A real checkout, end to end
Sample invoices carry a small panel on the checkout that previews the outcome without any payment:
How the demo works
When you launch the demo, Payora creates a fresh fiat-priced invoice for $1,000.00 (USD) with a short time-to-live and redirects you to the hosted checkout at pay.payora.money. That checkout is the exact page your customers use in production — the only difference is that this invoice is a throwaway sample, so you can explore it without paying.
On the checkout you can switch between coins to see how a fiat price is quoted into each asset, inspect the derived deposit address, open the wallet deep-link, and watch the countdown that governs how long the locked exchange rate is valid. If you send a real payment it would confirm and settle to the operator's wallet, but that is not required to understand the flow.
In your own integration, reproducing this is a single API call: create an invoice with an order ID and a fiat or crypto amount, then redirect the customer to the returned pay URL. Your backend only has to verify one HMAC-signed webhook to mark the order paid. Read the developer docs or create a free account to get API keys.
<?php
// what /demo/start does, as an integrator would write it
$payora = new Payora('https://api.payora.money', $apiKey, $apiSecret);
$inv = $payora->createInvoice([
'order_id' => 'demo-' . bin2hex(random_bytes(4)),
'mode' => 'fiat',
'amount' => '1000.00',
'fiat_currency' => 'USD',
'ttl' => 7200,
'return_url' => 'https://payora.money/demo',
'lang' => 'en',
]);
header('Location: ' . $inv['pay_url']);<?php
// your webhook endpoint: verify first, then credit once
$event = $payora->verifyWebhook(file_get_contents('php://input'), getallheaders());
if ($event && $event['status'] === 'paid') {
creditOrder($event['order_id']);
}Frequently asked questions
Straight answers, including the uncomfortable ones: custody, fees and what happens when something goes wrong.
Help centreDo I need an account to try the demo?
No. The live demo mints a throwaway sample invoice and opens the real hosted checkout with no login and no payment required. Create a free account only when you want your own API keys.
Will I be charged if I open the demo?
No. The demo creates a sample $1,000 invoice so you can explore the checkout. You are never charged; sending an actual crypto payment is optional and not expected.
Is the demo checkout the same as production?
Yes. It is the exact hosted checkout your customers use — coin selection, derived address, QR, wallet deep-link, rate countdown and live status polling. Only the sample invoice is disposable.
How do I build this into my own site?
Create an invoice with one API call (order ID plus a fiat or crypto amount), redirect the customer to the returned pay URL, and verify one signed webhook. The one-file PHP SDK and REST API cover every language.
Start accepting crypto for real
Create an account, add your site, paste one API call or install a plugin. Accepting stays 0% on every plan.
What this page answers
- crypto payment gateway API
- REST API for crypto invoices
- webhook signature verification
- crypto payment integration guide
- PHP SDK for crypto payments
- how to create an invoice by API
- sandbox for crypto payments
- CMS modules for a crypto checkout
- idempotency in payment webhooks
- testing a crypto checkout
- developer documentation for payments
- reference for Live crypto checkout demo