Skip to main content

Get prospect enrichment

Retrieve status details for a prospect enrichment batch. Use this endpoint after queueing prospect enrichments when you already know the batch ID and want the most direct lookup.

Use this endpoint to retrieve prospect enrichment statuses for a single batch. To retrieve statuses across multiple batches, use list prospect enrichments.

Request

Endpoint

GET https://api.woodpecker.co/rest/v2/lead_finder/prospects/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 prospect enrichments

Request samples

Retrieve one prospect enrichment batch

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

Response

Response examples

Prospect enrichment fetched successfully.

{
"prospect_enrichment": {
"uuid": "e9e6abc4-729e-4c22-b412-8917b1db919d",
"created": "2026-05-01T10:00:00+02:00",
"prospects": [
{
"prospect_email": "erlich@bachmanity.com",
"status": "PROCESSED_ENRICHED"
},
{
"prospect_email": "jared@piedpiper.com",
"status": "PENDING"
}
]
}
}

Body schema

FieldTypeDescription
prospect_enrichmentobjectOne prospect enrichment batch
└─ uuidstringEnrichment batch identifier
└─ createdstringBatch creation timestamp in ISO 8601 format
└─ prospectsarray[object]Prospects included in the batch
  └─ prospect_emailstringProspect email address
  └─ statusstringProcessing status: PENDING, PROCESSED_ENRICHED, or PROCESSED_NOT_ENRICHED