API Reference · core
Enrich ICP scores via API
Score any lead or account 0-100 against your ideal-customer profile.
Endpoint
POST https://api.cleanlist.ai/v1/enrich/icp_scoreRequest
POST https://api.cleanlist.ai/v1/enrich/icp_score
Authorization: Bearer clnl_live_...
Content-Type: application/json
{
"email": "jane@acme.com"
}Response
{
"id": "ev_abc123",
"icp_score": {
"record_id": "<record_id>",
"score": "<score>",
"breakdown": "<breakdown>",
"signals": "<signals>",
"rank": "<rank>"
},
"meta": {
"credits_used": 11,
"providers_queried": 15
}
}Field reference
| Field | Type | Description |
|---|---|---|
| record_id | string | — |
| score | string | — |
| breakdown | string | — |
| signals | string | — |
| rank | string | — |
Code samples
curl
curl -X POST https://api.cleanlist.ai/v1/enrich/icp_score \
-H "Authorization: Bearer $CLEANLIST_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "jane@acme.com"}'Node.js
import Cleanlist from "cleanlist";
const client = new Cleanlist(process.env.CLEANLIST_API_KEY);
const result = await client.enrich.icp_score({
email: "jane@acme.com",
});
console.log(result.icp_score.title);Python
from cleanlist import Cleanlist
client = Cleanlist(api_key=os.environ["CLEANLIST_API_KEY"])
result = client.enrich.icp_score(email="jane@acme.com")
print(result["icp_score"]["title"])Pricing
Credit-based, no per-seat fees. This endpoint uses the standard enrichment rate:
- Email only: 1 credit per enriched icp_score.
- Email + phone: 11 credits per enriched icp_score.
- Free tier: 30 credits/mo. See all pricing.
Next steps
- Full REST reference: /product/api.
- Related glossary: data enrichment, waterfall enrichment.
- Ready to ship? Start free with 30 credits.