Lightning Address
General
These are a few HTTP GET requests that aims to exemplify the Lightning Address / LNURL functionality.
ZEBEDEE APIs
The APIs provided here (zbd.gg and api.zebedee.io) are both controlled and maintained by ZEBEDEE, an LSP and fintech infrastructure provider for the gaming industry.
Please report any inconsistent behavior of these APIs to devreports@zebedee.io.
GETandre@zbd.gg Lightning Address
Lightning Address
The Lightning Address is a simple human-readable HTTP-based resolver for an LNURL Pay QR code. Instead of scanning a QR code or copy-pasting a string like lnurl1ja9ch12......
, with Lightning Address you can use username@domain.com
.
Fetching Information
andre@zbd.gg
= username@domain.com
When evaluating a Lightning Address, all that needs to be done is extract the username
and the domain.com
from the address and perform a GET request. The returned response payload is the response for the normal
LNURL Pay flow, also known as LUD 6.
From username
@domain.com
to https://domain.com
/.well-known/lnurlp/username
.
To decode Lightning Addresses. head on over to Lightning Decoder app. A few other examples of Lightning Address follow below:
Response Example
This response payload is identical
to the response payload of the next request. This is to showcase how the Lightning Address and the LNURL Pay (encoded URL) QR codes are interchangeable. LN Address just resolves to the QR code itself.
GETandre LNURLp Fetch Payload
LNURL Pay Fetch Details
The LNURL Pay flow is comprised of 2 API requests, one for fetching metadata, min/max sending amounts, and callback URL, followed by a second request which performs the actual get me an invoice
request.
This API represents the first API where the payload response follows the LUD6 protocol.
Response Example
GETandre LNURLp Request Invoice
Request Invoice
After fetching the LNURL Pay parameters with the previous API endpoint, we now have access to the callback
property, which outlines the URL for submitting a GET call to retrieve a new invoice. This is the Hey, give me an invoice for 500 satoshis
part.
Using the amount
query parameter in the GET request with the provided callback
, if the amount is between the minSendable
and maxSendable
amounts, then an invoice will returned in the response payload.
Note that values are in millisatoshis, not satoshis. 1 sat = 1000 msat
.
Response Example
The pr
property that gets returned is the Lightning Network invoice itself (payment request).
If you wish to decode/learn more about this invoice, head on over to Lightning Decoder.