Skip to content

Credits & Billing

BizVerify uses a prepaid credit system. Credits are deducted when you make verification or search requests. If a job fails after all retry attempts, credits are automatically refunded.

New accounts start with 50 free credits.

OperationCreditsNotes
Quick check1Existence, status, and good-standing. Fast, always-available answer.
Deep verification15Adds entity type, formation date, registered agent, officers, principal address, and filing history. Availability varies by jurisdiction.
Deep verification (force refresh)25Same as deep, but bypasses cache to return the most current result.
Search (per jurisdiction)2Charged per jurisdiction searched
Entity history5Historical verification snapshots
Entity lookupFreeRetrieve cached entity by ID
Job status checkFreePoll async job status

See the Verification tiers page for when to use quick vs deep, and the Coverage page for per-jurisdiction tier availability.

Every authenticated API response includes credit information in headers:

HeaderDescription
X-Credits-RemainingYour credit balance after this request
X-Credits-ChargedCredits consumed by this request (0 for free endpoints)

These headers are included on both success and error responses, so you can always track your balance.

Terminal window
curl https://api.bizverify.co/v1/account \
-H "X-API-Key: bv_live_..."

The credit_balance field in the response shows your current balance.

For more detail including transaction history:

Terminal window
curl https://api.bizverify.co/v1/billing \
-H "X-API-Key: bv_live_..."

Returns your balance, available packages, and paginated transaction history. Use ?limit=10&offset=0 query parameters to paginate transactions.

const meta = biz.lastResponseMeta;
console.log(meta?.creditsRemaining); // balance after last request
Terminal window
curl -X POST https://api.bizverify.co/v1/billing/purchase \
-H "Content-Type: application/json" \
-H "X-API-Key: bv_live_..." \
-d '{"package_id": "credits_100"}'

This returns a Stripe checkout URL. Complete the payment there and credits are added to your account immediately.

PackageCreditsPricePer credit
Starter100$8$0.08
Pro500$35$0.07
Business2,000$120$0.06
Enterprise10,000$500$0.05

Credits are automatically refunded when a verification or search job fails after all retry attempts. You don’t need to take any action — the refund happens immediately and your balance is updated.

The X-Credits-Remaining header on subsequent requests will reflect the refunded amount.

In rare cases, refunds can also be issued manually by BizVerify support. Contact support@bizverify.co if you believe a charge was incorrect.

For more on how async jobs work and when failures occur, see Async Jobs.