Skip to main content

Get lead enrichment

Retrieve one lead enrichment batch by its uuid. Use this endpoint after queueing lead enrichments when you already know the batch ID and want the most direct status check.

If you need to browse recent batches first, use list lead enrichments.

Request

Endpoint

GET https://api.woodpecker.co/rest/v2/lead_finder/leads/enrichments/{uuid}

Headers

x-api-key: {YOUR_API_KEY}

For details on how to authenticate your requests, please see the authentication guide.

Parameters

ParameterRequiredTypeDescription
uuidYesstringEnrichment batch UUID returned by queue lead enrichments

Request samples

Retrieve one lead enrichment batch

curl --request GET \
--url "https://api.woodpecker.co/rest/v2/lead_finder/leads/enrichments/{uuid}" \
--header "x-api-key: {YOUR_API_KEY}"

Response

Response examples

Successfully fetched status details for a lead enrichment batch.

{
"lead_enrichment": {
"uuid": "088e2d8a-d8ac-41fc-969f-0ba4102682ac",
"created": "2026-05-01T10:00:00+02:00",
"leads": [
{
"uid": "0SVOUNZGlkzJ5fRrBxUdiQ_0000",
"status": "PROCESSED",
"processing_result": "NOT_CONVERTED_TO_PROSPECT"
}
]
}
}

Body schema

FieldTypeDescription
lead_enrichmentobjectOne lead enrichment batch
└─ uuidstringEnrichment batch identifier
└─ createdstringBatch creation timestamp in ISO 8601 format
└─ leadsarray[object]Leads included in the batch
  └─ uidstringLead identifier
  └─ statusstringProcessing status: PENDING or PROCESSED
  └─ processing_resultstring/nullProcessing result: CONVERTED_TO_PROSPECT, NOT_CONVERTED_TO_PROSPECT, or null while pending