API Reference · core
Enrich accounts via API
Roll up buying committees and firmographic depth for target accounts.
Endpoint
POST https://api.cleanlist.ai/v1/enrich/accountRequest
POST https://api.cleanlist.ai/v1/enrich/account
Authorization: Bearer clnl_live_...
Content-Type: application/json
{
"email": "jane@acme.com"
}Response
{
"id": "ev_abc123",
"account": {
"domain": "<domain>",
"name": "<name>",
"industry": "<industry>",
"size": "<size>",
"buying_committee": "<buying_committee>",
"last_funding": "<last_funding>",
"top_titles": "<top_titles>"
},
"meta": {
"credits_used": 11,
"providers_queried": 15
}
}Field reference
| Field | Type | Description |
|---|---|---|
| domain | string | — |
| name | string | — |
| industry | string | — |
| size | string | — |
| buying_committee | string | — |
| last_funding | string | — |
| top_titles | string | — |
Code samples
curl
curl -X POST https://api.cleanlist.ai/v1/enrich/account \
-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.account({
email: "jane@acme.com",
});
console.log(result.account.title);Python
from cleanlist import Cleanlist
client = Cleanlist(api_key=os.environ["CLEANLIST_API_KEY"])
result = client.enrich.account(email="jane@acme.com")
print(result["account"]["title"])Pricing
Credit-based, no per-seat fees. This endpoint uses the standard enrichment rate:
- Email only: 1 credit per enriched account.
- Email + phone: 11 credits per enriched account.
- 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.