Inspect tag-9 feature bit payloads quickly — 5 sats
Extract BOLT11 feature-bits metadata from tag 9. Returns feature-tag count, payload hex values, and normalized byte sizing so clients can quickly check whether feature bits are present and parseable.
5 sats via L402.
curl -X POST https://maximumsats.com/api/bolt11-features \
-H "Content-Type: application/json" \
-d '{"invoice": "lnbc..."}'
{
"ok": true,
"currency": "bc",
"payment_hash": "...",
"has_feature_bits": true,
"feature_bit_tags": 1,
"feature_bits_hex": ["..."],
"feature_bits_bytes": [2],
"feature_bits_total_bytes": 2,
"feature_bits_parseable": true
}