Billing

How to Purchase Additional Credits

By SMB Sales Boost Team.

✓ Quick Answer

Go to Account Settings > Billing tab and click Purchase Credits. Choose the number of credits or dollar amount, and the purchase is charged to your card on file. You can also set up Auto Top-Up to automatically buy credits when your balance gets low.

How to Purchase Additional Credits

Need more credits beyond your monthly allocation? You can purchase permanent credits that never expire and are used after your monthly credits run out.

Purchasing Credits on the Dashboard

  1. Log in to your SMB Sales Boost account
  2. Go to Account Settings by clicking your profile icon
  3. Navigate to the Billing tab
  4. Click Purchase Credits
  5. Enter the amount - choose by credit count (minimum 100) or dollar amount (minimum $1)
  6. Confirm purchase - the charge goes to your card on file through Stripe

Purchasing Credits via API

Use the API to buy credits programmatically:

POST /api/v1/purchase-credits
{
  "creditCount": 500
}

Or specify a dollar amount:

POST /api/v1/purchase-credits
{
  "dollarAmount": 50
}

Pricing by Plan

Plan Per-Credit Price Max per Purchase
Starter ($49/mo) $0.10 2,500 credits
Growth ($149/mo) $0.075 10,000 credits
Scale ($499/mo) $0.05 50,000 credits
Platinum ($1,999/mo) $0.03 500,000 credits
Enterprise ($4,999/mo) $0.02 1,250,000 credits

The maximum per purchase is 5x your plan's monthly credit allocation.

Setting Up Auto Top-Up

Never run out of credits with automatic replenishment:

  1. Go to Account Settings > Billing tab
  2. Enable Auto Top-Up
  3. Set a trigger threshold - e.g., "Buy more when permanent credits fall below 200"
  4. Set purchase amount - e.g., "Buy 500 credits each time"
  5. Set a monthly cap (optional) - e.g., "Do not spend more than $100/month on auto top-up"

You can also configure Auto Top-Up via the API:

PATCH /api/v1/auto-top-up
{
  "enabled": true,
  "triggerType": "credits",
  "triggerAmount": 200,
  "purchaseType": "credits",
  "purchaseAmount": 500,
  "capType": "dollars",
  "capAmount": 100
}

Important Notes


Ready to Find Your Next Customers? Get access to newly registered business leads updated daily. Get Started


Related Articles