Docs/Credits & Usage

Credits & Usage

Understand how VeriMails credits work and how to check your balance via API.

How credits work

Free tier

Every account starts with a free daily allowance:

Purchasing credits

Paid plans and credit packs are available at verimails.com/pricing. Purchased credits never expire and can be used any time.

Check balance via API

GET https://verimails.com/api/credits

Example request

bash
curl https://verimails.com/api/credits \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

json
{
  "credits_remaining": 1842,
  "credits_used_today": 158,
  "daily_limit": 25
}

Response fields

FieldTypeDescription
credits_remainingintegerTotal credits available in your account
credits_used_todayintegerCredits consumed today (resets midnight UTC)
daily_limitintegerFree daily limit for your plan (25 on free tier)
â„šī¸
On paid plans, daily_limit reflects your plan's daily allocation. Purchased credit packs contribute to credits_remaining and are used after daily allotment is exhausted.