Decode Lightning invoices into structured fields — 10 sats
Decode a Lightning BOLT11 invoice into structured fields: amount, timestamp, expiry, payment hash, description, payee pubkey, and signature metadata.
10 sats via L402.
curl -X POST https://maximumsats.com/api/bolt11-decode \
-H "Content-Type: application/json" \
-d '{"invoice": "lnbc..."}'
{
"currency": "bc",
"amount_sats": "50000",
"timestamp_iso": "2026-02-11T00:00:00.000Z",
"payment_hash": "..."
}