Payaider Docs Non-custodial crypto payments API 2026-08-27

Links & Invoices

Get paid without writing any code: a shareable link, or a proper invoice with a customer and a due date.

Invoices

An invoice adds a customer, a number and a due date, and renders a payable page with the QR, the exact amount and the countdown.

bash
curl -X POST https://api.payaider.com/v1/invoices \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: $(uuidgen)" \
  -d '{
    "amount": 4500000,
    "currency": "NGN",
    "customer": { "name": "Adaeze Okafor", "email": "adaeze@example.com", "country": "NG" },
    "due_date": "2026-09-03T23:59:59.000Z",
    "metadata": { "po_number": "PO-88214" }
  }'

Which one to use

UseWhen
Payment intentYou have a checkout of your own and want to redirect from it.
Payment linkYou want a URL or QR poster you can reuse, with no code at all.
InvoiceYou need a customer on record, an invoice number and a due date.

Getting paid in a currency with a parallel FX rate

Currencies whose official and street rates diverge — NGN and its peers — are quoted from crypto-market-native sources rather than an official peg, so the amount your customer is asked for is the amount their wallet actually costs them. A currency becomes quotable only once its rate sourcing has been vetted, which is why the supported list is shorter than ISO-4217.