Lightning Address Parser

Normalize LUD-16 and derive integration URLs — 4 sats

About

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.

Try It

4 sats via L402.

API Usage

curl -X POST https://maximumsats.com/api/lightning-address-parse \
  -H "Content-Type: application/json" \
  -d '{"address":"lightning:Max@Klabo.World"}'

Sample Response

{
  "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"
}
Also available via MCP as lightning_address_parse at maximumsats.com/mcp