Playground Starter Kit

Live Demo
Open the ZBD + Next.js Playground
GitHub Repository
View the source code.
Deploy to Vercel
1-click deploy your own instance.
Next.js
To use ZBD with Next.js and complete this guide, you will need the following:1. Create a Next.js project
Start with a brand new Next.js project. To begin run the following command and walk through the initializing steps:2. Install @zbdpay/payments-sdk Node.js SDK
Install ZBD:3. Create Send and Receive API routes
Create a new file/app/api/receive/route.ts
and add the following code to create an API route that will receive instant Bitcoin payments:
/app/api/send/route.ts
and add the following code to create an API route that will send Bitcoin Lightning Address payments:
4. Run your Next.js server
Run the following command to start your Next.js server:data.invoice.request
property in the JSON response. It starts with lnbc1
and is the payment request anyone in the Bitcoin Lightning Network can use to pay you.
Using an API tool like Postman, you should be able to make a POST call to this endpoint and receive a JSON response with the payment success message:
status
of completed
to know that the payment settled successfully.
Payments in the Lightning Network are asynchronous so you may see a response stating the payment is
processing
. This is expected — use the callbackUrl
property to receive updates about your payments.