# Provisioning: customers who arrive already paying

## Buyers subscribe to your product inside NachoNacho and land in your app with the payment already made. You set the plans, we collect the money and handle renewals, and one API call tells you exactly who signed up.

[List your product](https://connect.nachonacho.com/signup-seller)

## Subscriptions, **without the billing work**

Your plans, your prices

Monthly, annual or one-off tiers that you control from your seller dashboard. Change a price and the marketplace updates immediately — no code, no redeploy, no promo codes to hand out.

Know who signed up

Buyers arrive at your app with a single-use token. Exchange it for a subscription ID and you know exactly which customer paid, on which plan. Check it at login to confirm they are still subscribed.

We handle the billing

Renewals, upgrades, cancellations, failed cards, receipts and refunds are all ours to deal with. You never touch card details and never chase a payment.

A new acquisition channel

Your product sits in front of tens of thousands of businesses already buying software on NachoNacho. You only pay revenue share on money you actually collect — nothing upfront.

## How **Provisioning** works

1. You **set your plans**  
   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.

2. The buyer **subscribes and pays**  
   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.

3. They **arrive in your app, already paid**  
   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"
   ```

4. We **keep billing and pay you**  
   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](https://api-docs.nachonacho.com/).

## 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.

[NachoPay\
\
Usage, credits, variable seats, one-off work\
\
The buyer saves a payment method once and you charge them on your own terms, by API.](/content/seller/nachopay/index.html)

Provisioning

You're here

Buyers subscribe to your plans inside NachoNacho and land in your app already paid.

[Manual provisioning\
\
Sales-led products and custom onboarding\
\
The buyer pays in NachoNacho, you set up their account by hand. No integration at all.](/content/seller/provisioning-manual/index.html) [Affiliate\
\
Sellers already running an affiliate program\
\
Keep your own checkout and track sales through the affiliate network you already use.](/content/seller/affiliate/index.html)

### Ready to get paying customers on day one?

[List your product](https://connect.nachonacho.com/signup-seller)
