Register LNURLDevice devices to receive payments in your LNbits wallet.
Build your own here https://github.com/arcbtc/bitcoinpos
Created by, Ben Arc

/lnurldevice/api/v1/lnurlpos
Headers
{"X-Api-Key": <admin_key>}
Body (application/json)
Returns 200 OK (application/json)
[<lnurldevice_object>, ...]
Curl example
curl -X POST {{ request.base_url }}lnurldevice/api/v1/lnurlpos -d '{"title": <string>, "message":<string>, "currency": <integer>}' -H "Content-type: application/json" -H "X-Api-Key: {{user.wallets[0].adminkey }}"
PUT /lnurldevice/api/v1/lnurlpos/<lnurldevice_id>
Headers
{"X-Api-Key": <admin_key>}
Body (application/json)
Returns 200 OK (application/json)
[<lnurldevice_object>, ...]
Curl example
curl -X POST {{ request.base_url }}lnurldevice/api/v1/lnurlpos/<lnurldevice_id> -d ''{"title": <string>, "message":<string>, "currency": <integer>} -H "Content-type: application/json" -H "X-Api-Key: {{user.wallets[0].adminkey }}"
GET /lnurldevice/api/v1/lnurlpos/<lnurldevice_id>
Headers
{"X-Api-Key": <invoice_key>}
Body (application/json)
Returns 200 OK (application/json)
[<lnurldevice_object>, ...]
Curl example
curl -X GET {{ request.base_url }}lnurldevice/api/v1/lnurlpos/<lnurldevice_id> -H "X-Api-Key: {{ user.wallets[0].inkey }}"
GET /lnurldevice/api/v1/lnurlposs
Headers
{"X-Api-Key": <invoice_key>}
Body (application/json)
Returns 200 OK (application/json)
[<lnurldevice_object>, ...]
Curl example
curl -X GET {{ request.base_url }}lnurldevice/api/v1/lnurlpos -H "X-Api-Key: {{ user.wallets[0].inkey }}"
DELETE /lnurldevice/api/v1/lnurlpos/<lnurldevice_id>
Headers
{"X-Api-Key": <admin_key>}
Returns 204 NO CONTENT
Curl example
curl -X DELETE {{ request.base_url }}lnurldevice/api/v1/lnurlpos/<lnurldevice_id> -H "X-Api-Key: {{ user.wallets[0].adminkey }}"