BOLT11 Amount Extractor

Extract sats/msats and zero-amount status — 5 sats

About

Extract just the amount fields from a BOLT11 invoice. Useful when you need quick amount validation without full invoice inspection.

Try It

5 sats via L402.

API Usage

curl -X POST https://maximumsats.com/api/bolt11-amount \
  -H "Content-Type: application/json" \
  -d '{"invoice": "lnbc..."}'

Sample Response

{
  "ok": true,
  "currency": "bc",
  "has_amount": true,
  "is_zero_amount_invoice": false,
  "amount_msats": "50000000",
  "amount_sats": "50000",
  "payment_hash": "..."
}
Also available via MCP at maximumsats.com/mcp