Subscriptions, without the billing work
How Provisioning works
Create your pricing tiers once in your seller dashboard — monthly, annual, or one-off. Buyers see them on your NachoNacho product page, with their discount already applied.
They pick a plan and check out without ever leaving NachoNacho. We take the payment, handle the card details, and create the subscription. You get a paying customer before they have even reached your signup form.
We send the buyer to your signup page with a single-use token. Exchange it server-side for a NachoNacho subscription ID, store it against your customer, and check it whenever you need to know they are still paying.
# 1. The buyer arrives at https://your-app.com/signup?NN_token=NN_claim_Ddpu...
curl -X POST https://public-api.nachonacho.com/tokens/resolve \
-H "Authorization: Bearer $JWT" \
-H "Content-Type: application/json" \
-d '{ "token": "NN_claim_Ddpu..." }'
# => { "subscriptionId": "cmmcoxge20001cnsppobu1anr" }
# 2. Later, check the subscription is still active
curl https://public-api.nachonacho.com/subscriptions/cmmcoxge20001cnsppobu1anr \
-H "Authorization: Bearer $JWT"Renewals, upgrades, downgrades, cancellations, failed cards and receipts are all handled by NachoNacho. You watch subscriptions and invoices in your seller dashboard and receive your revenue share.
Everything is documented in the NachoNacho Public API.
Four ways to get paid
Every product on NachoNacho uses one redemption mechanism. Pick the one that matches how you sell — you can always change it with us later.