Skip to main content

List lead enrichments

List lead enrichment batches requested for the authenticated account. Use this endpoint after queueing lead enrichments to inspect requested jobs and their per-lead processing state.

If you already have a specific batch uuid, use get lead enrichment for a direct lookup.

Request

Endpoint

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

Headers

x-api-key: {YOUR_API_KEY}

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

Parameters

By default, the endpoint returns lead enrichment batches requested during the last 24 hours. Use created_after to fetch batches requested after the provided cutoff date.

ParameterRequiredTypeDescription
created_afterNostringCutoff date in YYYY-MM-DD format. When provided, the endpoint returns batches requested after this date instead of using the default last-24-hours cutoff

Request samples

Retrieve lead enrichment batches

curl --request GET \
--url "https://api.woodpecker.co/rest/v2/lead_finder/leads/enrichments?created_after=2026-05-01" \
--header "x-api-key: {YOUR_API_KEY}"

Response

Response examples

Lead enrichment batches for the authenticated account that match the selected cutoff. Use uuid with get lead enrichment when you need to inspect one batch directly.

{
"lead_enrichments": [
{
"uuid": "e345310f-cfa7-42e3-b2fc-d888a332a899",
"created": "2026-05-01T10:00:00+02:00",
"leads": [
{
"uid": "0SVAICGlkzJ5fMrBxUdiQ_0000",
"status": "PROCESSED",
"processing_result": "NOT_CONVERTED_TO_PROSPECT"
}
]
},
{
"uuid": "eed003ca-b107-4126-bdb6-b5638737d508",
"created": "2026-05-01T10:10:00+02:00",
"leads": [
{
"uid": "0SVOUNZGlkzJ5fMcHsUdiQ_0000",
"status": "PROCESSED",
"processing_result": "NOT_CONVERTED_TO_PROSPECT"
}
]
}
]
}

Body schema

FieldTypeDescription
lead_enrichmentsarray[object]Recent lead enrichment batches
└─ 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