Everything you need to integrate the RichAPI API into your product.
Credit-based billing system
# Current month
curl https://api.richapi.ai/api/v1/usage \
-H "x-api-key: YOUR_API_KEY"
# Specific month
curl "https://api.richapi.ai/api/v1/usage?month=2026-03" \
-H "x-api-key: YOUR_API_KEY"Response:
{
"month": "2026-03",
"total_credits": 42.5,
"apis": {
"enrich_profile": {
"calls": 25,
"credits": 25
},
"people_search": {
"calls": 5,
"credits": 17.5
}
}
}Each endpoint has a per-customer monthly quota of <strong>100,000 calls</strong>. If you exceed this limit, the API returns a <code>429</code> status code.
{
"error": "Monthly quota exceeded",
"api": "enrich_profile",
"limit": 100000,
"current": 100000
}