A simple billing service using LemonSqueezy.
Verifies if a user has paid/subscribed for a product.
Query params
email
- The email of the user.productIds
- The product ids to verify.
Response
true | false
Returns a list of products.
Query params
name
- Filter products by name.
Response
[
{
"id": "123456",
"storeId": 12345,
"type": "directSubscription",
"prettyPrice": "$1.99"
},
{
"id": "654321",
"storeId": 12345,
"type": "oneTime",
"prettyPrice": "$0.99"
},
]