Read the remaining credit balance and the current billing period for your team.
Use this endpoint to monitor how many credits your team has left and when the current billing period ends. Credits are shared across all enrichment endpoints (search, find-people, lookup-people, lookup-business-email).
The response uses the same three fields for every plan. The dates show the period used for your team's current credit balance.
Make sure you have:
curlAuthentication. We recommend sending your API key as Authorization: Bearer <your_api_key>. If your current integration already uses X-API-Key: <your_api_key>, it will continue to work.
Missing or unknown keys return HTTP 401 with {"detail":"Invalid API Key"}.
GET https://api.openmart.ai/api/v2/credit-balancecurl --request GET \
--url https://api.openmart.ai/api/v2/credit-balance \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <your_api_key>'{
"period_start": "2025-08-05T20:22:47Z",
"period_end": "2026-08-05T20:22:47Z",
"balance": 998931751
}period_startperiod_endbalance| Response element | Type | Description |
|---|---|---|
period_start | string (RFC3339 UTC) | Start of the current credit or subscription period, in UTC. |
period_end | string (RFC3339 UTC) | End of the current credit or subscription period, in UTC. |
balance | integer | Remaining credits available to the authenticated team. |
This endpoint takes no request body and no query parameters. The API key in your header determines which team's balance is returned.
Match the error number or message in the response, then use the action below.
See Troubleshooting & FAQ for step-by-step help and the information to include when asking for support.