Integration
No code
Create a company by clicking Get Started on https://checkout.llamapay.io/
Create a payment link
Add the payment link to your site or send it to customers directly
Code
Have you integrated Coinbase Commerce already? Our API is fully backwards compatible with it, so you can switch to LlamaPay by simply replacing endpoint urls, api key, and webhook secret. It's a drop-in replacement!
Create a company by clicking Get Started on https://checkout.llamapay.io/
Set up a server with a webhook endpoint to get notified when the payment is paid.
Go to the Developer tab in LlamaPay UI, set your webhook URL and copy your API Key and webhook secret.
To create a new payment, make a
POST
request tohttps://api.llamapay.io/charges
, then takehosted_url
from the response and send it to your users to pay.
Here's a basic express server that implements the system above:
Last updated