Skip to main content
The Credits endpoint gives you a real-time snapshot of your Clodura API credit balance and consumption. Use it to proactively monitor your account, prevent unexpected service interruptions, and understand how credits are being consumed across your integration. This is a simple GET request with no request body — just authenticate with your API key. The response schema differs depending on your Clodura subscription plan. Prospect and Prospect Pro plans track contacts viewed and direct dials separately against fixed plan limits. Free Forever, Max, and PAYG plans use a single unified credit pool displayed as remainingCredits.
Every request to the Search People, Reveal Email, and Reveal Phone endpoints consumes credits from your account. See the individual endpoint pages for per-operation credit costs.

Endpoint

GET /api/v1/credits

Request

Headers

HeaderValue
X-API-KEYYour Clodura API key
This endpoint accepts no request body.

Example Request

curl --request GET \
  --url https://api.clodura.ai/api/v1/credits \
  --header 'X-API-KEY: YOUR_API_KEY'

Response

The response schema depends on your Clodura plan.
These plans track contact views and direct dials separately, each with their own maximum allowance based on your subscription tier.
PlanTotal Contact ViewsTotal Direct Dials
Prospect1,000Plan limit
Prospect Pro2,000Plan limit
contactsView
integer
Number of credits consumed so far to view contact email addresses using the Reveal Email endpoint.
maxContacts
string
Total contact view credits available on your current plan (e.g., "1000" for Prospect, "2000" for Prospect Pro).
directDials
integer
Number of credits consumed to retrieve contact phone numbers via integrated providers.
maxDirectDials
integer
Total direct dial credits available on your current plan.
{
  "contactsView": 142,
  "maxContacts": "1000",
  "directDials": 38,
  "maxDirectDials": 200
}

Plan Credit Summary

PlanCredit ModelStarting Credits
Free ForeverCommon Credits (remainingCredits)Plan allocation
MaxCommon Credits (remainingCredits)Plan allocation
PAYGCommon Credits (remainingCredits)Purchase as needed
ProspectSeparate: contactsView / directDials1,000 contact views
Prospect ProSeparate: contactsView / directDials2,000 contact views

Error Codes

StatusMeaning
400Bad request — malformed request
401Unauthorized — your API key is missing or invalid
403Forbidden — you do not have permission to access this resource
422Unprocessable entity — validation error in the request
429Rate limit exceeded — reduce request frequency
The Credits endpoint is available to all plan types. If you receive a 403, verify your API key is active and has not been revoked in the Clodura Developer Dashboard.