New: API Reference docs are live — integrate Cleanlist enrichment into your apps. View API docs →
MCP API
Enrichment Types

TL;DR: Three enrichment types. partial = email only (1 credit), phone_only = phone only (10 credits), full = email + phone (11 credits). The bulk list endpoint spells phone_only as phone-only (hyphen) under its scope field, but the pricing is identical.

Enrichment Types

Every Cleanlist enrichment is one of three types. The type controls which data points the waterfall goes looking for, and the cost.

TypeWhat you getCost / lead
partialVerified business email only1
phone_onlyPhone number only10
fullVerified email and phone11

Phone discovery is more expensive than email because it draws on premium phone providers — that's why full (11) is partial (1) plus the phone cost (10).

Field names by endpoint

The same three types appear under slightly different field names depending on the endpoint:

EndpointFieldAccepted values
POST /enrichment/personenrichment_typepartial, phone_only, full
POST /enrichment/bulkscopepartial, full, phone-only
POST /lead-lists/{id}/csv-importenrichment_typepartial, phone_only, full
POST /enrichment/by-taskdata_pointsderived (see below)

The bulk list endpoint uses phone-only (hyphen) under scope; the person and CSV endpoints use phone_only (underscore) under enrichment_type. They mean the same thing and cost the same.

By-task: data points → type

The by-task cohort endpoint takes data_points instead of a single enum, and derives the type:

data_pointsResolved typeCost / lead
["Email", "Phone"]full11
["Phone"]phone_only10
["Email"] (or ["LinkedIn"])partial1

Legacy include_phone

The single-person endpoint also accepts a legacy boolean, include_phone, kept for older callers:

  • include_phone: falsepartial (email only)
  • include_phone: truephone_only

When set, the explicit enrichment_type field always wins. New integrations should use enrichment_type — it's the only way to express full.

Choosing a type

  • Building an outbound email list? Use partial. Cheapest, highest fill rate.
  • Cold calling? Use phone_only.
  • Multi-channel (email + dialer)? Use full — one call, both channels, cheaper than two separate runs.

Learn more