API Reference · file
Enrich Sales Navigator exports via API
Enrich a Sales Navigator scrape — add verified work emails and direct dials.
Endpoint
POST https://api.cleanlist.ai/v1/enrich/salesnav_rowRequest
POST https://api.cleanlist.ai/v1/enrich/salesnav_row
Authorization: Bearer clnl_live_...
Content-Type: application/json
{
"email": "jane@acme.com"
}Response
{
"id": "ev_abc123",
"salesnav_row": {
"sn_search_id": "<sn_search_id>",
"linkedin_url": "<linkedin_url>",
"verified_email": "<verified_email>",
"direct_dial": "<direct_dial>"
},
"meta": {
"credits_used": 11,
"providers_queried": 15
}
}Field reference
| Field | Type | Description |
|---|---|---|
| sn_search_id | string | — |
| linkedin_url | string | — |
| verified_email | string | — |
| direct_dial | string | — |
Code samples
curl
curl -X POST https://api.cleanlist.ai/v1/enrich/salesnav_row \
-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.salesnav_row({
email: "jane@acme.com",
});
console.log(result.salesnav_row.title);Python
from cleanlist import Cleanlist
client = Cleanlist(api_key=os.environ["CLEANLIST_API_KEY"])
result = client.enrich.salesnav_row(email="jane@acme.com")
print(result["salesnav_row"]["title"])Pricing
Credit-based, no per-seat fees. This endpoint uses the standard enrichment rate:
- Email only: 1 credit per enriched salesnav_row.
- Email + phone: 11 credits per enriched salesnav_row.
- 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.