Skip to main content
GET
/
api
/
v1
/
balance
curl "https://lookup.proweblook.com/api/v1/balance?service=phonevalidation&api_key=YOUR_API_KEY"
{
  "balance": 4850,
  "service": "phonevalidation"
}

Overview

The Balance API lets you programmatically check your remaining credit balance for any ProWebLook service. Use this before submitting large batch jobs or to monitor credit consumption in your application.

Request Parameters

api_key
string
required
Your ProWebLook API key. See Authentication.
service
string
required
The service to check balance for. Accepted values:
ValueDescription
phonevalidationCredits for phone number validation
wavalidationCredits for WhatsApp validation
calleridvalidationCredits for Caller ID lookups
blacklistcheckerCredits for blacklist checks
blacklistAlias for blacklistchecker

Response

balance
integer
The number of remaining credits for the specified service.
service
string
The service name that was queried (normalized lowercase).
curl "https://lookup.proweblook.com/api/v1/balance?service=phonevalidation&api_key=YOUR_API_KEY"
{
  "balance": 4850,
  "service": "phonevalidation"
}