API Reference · crm record
Enrich Pipedrive deals via API
Attach buying committee and firmographics to every Pipedrive deal.
Endpoint
POST https://api.cleanlist.ai/v1/enrich/pipedrive_dealRequest
POST https://api.cleanlist.ai/v1/enrich/pipedrive_deal
Authorization: Bearer clnl_live_...
Content-Type: application/json
{
"email": "jane@acme.com"
}Response
{
"id": "ev_abc123",
"pipedrive_deal": {
"pipedrive_deal_id": "<pipedrive_deal_id>",
"organization_domain": "<organization_domain>",
"committee": "<committee>",
"technologies": "<technologies>"
},
"meta": {
"credits_used": 11,
"providers_queried": 15
}
}Field reference
| Field | Type | Description |
|---|---|---|
| pipedrive_deal_id | string | — |
| organization_domain | string | — |
| committee | string | — |
| technologies | string | — |
Code samples
curl
curl -X POST https://api.cleanlist.ai/v1/enrich/pipedrive_deal \
-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.pipedrive_deal({
email: "jane@acme.com",
});
console.log(result.pipedrive_deal.title);Python
from cleanlist import Cleanlist
client = Cleanlist(api_key=os.environ["CLEANLIST_API_KEY"])
result = client.enrich.pipedrive_deal(email="jane@acme.com")
print(result["pipedrive_deal"]["title"])Pricing
Credit-based, no per-seat fees. This endpoint uses the standard enrichment rate:
- Email only: 1 credit per enriched pipedrive_deal.
- Email + phone: 11 credits per enriched pipedrive_deal.
- 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.