Skip to main content

List prospect enrichments

List prospect enrichment statuses for the authenticated account. Use this endpoint after queueing prospect enrichments to inspect recent enrichment jobs and their per-prospect processing state.

With an empty request, this endpoint returns recent prospect enrichment statuses. With an emails filter, it returns statuses for the selected prospects. If you already know the batch uuid, use get prospect enrichment for a direct lookup.

Request

Endpoint

POST https://api.woodpecker.co/rest/v2/lead_finder/prospects/enrichments/statuses/query

Headers

x-api-key: {YOUR_API_KEY}
Content-Type: application/json

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

Body

To retrieve recent prospect enrichment statuses, send an empty body. To retrieve statuses for selected prospects, send emails:

{
"emails": [
"erlich@bachmanity.com"
]
}

Body schema

FieldTypeRequiredDescription
emailsarray[string]NoOptional list of prospect emails to filter by

Request samples

Query statuses for selected prospect emails

curl --request POST \
--url "https://api.woodpecker.co/rest/v2/lead_finder/prospects/enrichments/statuses/query" \
--header "x-api-key: {YOUR_API_KEY}" \
--header "Content-Type: application/json" \
--data '{
"emails": [
"erlich@bachmanity.com"
]
}'

Response

Response examples

Prospect enrichment statuses for the authenticated account. Use uuid with get prospect enrichment when you need to inspect one batch directly.

{
"prospect_enrichments": [
{
"uuid": "e9e6abc4-799e-4c22-b412-7917b1db919d",
"prospect_email": "erlich@bachmanity.com",
"created": "2026-05-15T11:14:56+02:00",
"status": "PROCESSED_NOT_ENRICHED"
},
{
"uuid": "e9e6abc4-799e-4c22-b412-7917b1db919d",
"prospect_email": "jared@piedpiper.com",
"created": "2026-05-15T11:14:56+02:00",
"status": "PROCESSED_ENRICHED"
}
]
}

Body schema

FieldTypeDescription
prospect_enrichmentsarray[object]Prospect enrichment status records
  └─ uuidstringEnrichment batch identifier
  └─ prospect_emailstringProspect email address
  └─ createdstringRecord creation timestamp in ISO 8601 format
  └─ statusstringProcessing status.
  • PENDING - enrichment is queued or still being processed
  • PROCESSED_ENRICHED - enrichment finished and found additional prospect data
  • PROCESSED_NOT_ENRICHED - enrichment finished but did not find additional prospect data