Normalize LUD-16 and derive integration URLs — 4 sats
Parse and normalize Lightning addresses (LUD-16), including lightning: URI forms. Returns username/domain plus derived LNURLp and NIP-05 lookup URLs without making external requests.
4 sats via L402.
curl -X POST https://maximumsats.com/api/lightning-address-parse \
-H "Content-Type: application/json" \
-d '{"address":"lightning:Max@Klabo.World"}'
{
"ok": true,
"input": "lightning:Max@Klabo.World",
"address": "max@klabo.world",
"username": "max",
"domain": "klabo.world",
"lnurlp_url": "https://klabo.world/.well-known/lnurlp/max",
"nostr_json_url": "https://klabo.world/.well-known/nostr.json?name=max"
}