API Reference · identifier
Enrich domains via API
Turn a domain into a complete company + top-contacts record.
Endpoint
POST https://api.cleanlist.ai/v1/enrich/domainRequest
POST https://api.cleanlist.ai/v1/enrich/domain
Authorization: Bearer clnl_live_...
Content-Type: application/json
{
"email": "jane@acme.com"
}Response
{
"id": "ev_abc123",
"domain": {
"domain": "<domain>",
"company_name": "<company_name>",
"industry": "<industry>",
"employee_count": "<employee_count>",
"revenue_range": "<revenue_range>",
"mx_records": "<mx_records>"
},
"meta": {
"credits_used": 11,
"providers_queried": 15
}
}Field reference
| Field | Type | Description |
|---|---|---|
| domain | string | — |
| company_name | string | — |
| industry | string | — |
| employee_count | string | — |
| revenue_range | string | — |
| mx_records | string | — |
Code samples
curl
curl -X POST https://api.cleanlist.ai/v1/enrich/domain \
-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.domain({
email: "jane@acme.com",
});
console.log(result.domain.title);Python
from cleanlist import Cleanlist
client = Cleanlist(api_key=os.environ["CLEANLIST_API_KEY"])
result = client.enrich.domain(email="jane@acme.com")
print(result["domain"]["title"])Pricing
Credit-based, no per-seat fees. This endpoint uses the standard enrichment rate:
- Email only: 1 credit per enriched domain.
- Email + phone: 11 credits per enriched domain.
- 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.