Skip to main content
This webhook is called when the lead enrichment is complete. The payload contains the enriched contact details. If your webhook endpoint is unavailable or returns an error, we will retry the request up to 3 times with exponential backoff to ensure you receive the data.

Webhook Payload Examples

{
  "enrichment_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
  "name": "Q3 Lead List",
  "status": "completed",
  "leads": [
    {
      "custom": {
        "contact_id": "lead_123"
      },
      "contact": {
        "firstname": "John",
        "lastname": "Doe",
        "most_probable_email": "[email protected]"
      }
    }
  ]
}