KYB pricing & billing
Only data requests cost money. Business login, business lookups and signature requests are free.
How it worksβ
Data requests draw on a prepaid CHF credit balance per organization. Top it up in Dashboard β KYB β Billing. There's no payment step per request and no invoice per call.
- Quote (optional).
POST /api/v1/kyb/data-requests/quoteshows the price without reserving anything. - Reserve. Creating a request reserves the full quoted amount right away. It appears as
priceon the request and on thepending_approvalevent. - Charge. When the data is released, you are charged only for the fields that were actually released. The charge appears as
chargeon thereleasedevent. A field the business doesn't have, a field your entitlement doesn't cover, or a field CorePass can't answer yet costs nothing.
If your balance can't cover a request, it is refused up front with 402 insufficient_credit, before anyone is asked to vote.
Pricing per fieldβ
Each field belongs to a pricing tier. The current tiers and prices are available from the API:
curl https://auth.corepass.net/api/v1/kyb/pricing \
-H "Authorization: <YOUR_API_KEY>"
A price line looks like {"field": "BUSINESS_LEGAL_NAME", "tier": "A", "cents": 100}. All amounts are in CHF cents.
Balance and chargesβ
curl https://auth.corepass.net/api/v1/kyb/billing/account \
-H "Authorization: <YOUR_API_KEY>"
{
"currency": "CHF",
"totalChf": 500.00,
"spentChf": 120.50,
"frozenChf": 15.00,
"availableChf": 364.50,
"billingEnabled": true
}
curl https://auth.corepass.net/api/v1/kyb/billing/charges \
-H "Authorization: <YOUR_API_KEY>"
availableChfBase your decisions on availableChf, not totalChf - spentChf. That calculation ignores frozenChf, the amount reserved by requests that are still waiting for a vote.
Insufficient creditβ
A 402 insufficient_credit or 402 no_credit_account response includes the shortfall:
{ "success": false, "error": { "code": 402, "reason": "insufficient_credit", "requiredChf": 4.20, "availableChf": 1.10 } }