Skip to main content

Enrich collected profiles

Enrich profiles collected from a LinkedIn post with available contact and company data. The enrichment adds the data to the same list, so you can continue working with the profiles in Woodpecker.

This request starts an asynchronous enrichment job. Use the returned action_uid with get enrichment status to check its progress.

Request

Credit usage

Each successfully enriched profile costs 1.5 credits. Credits are charged only for profiles where enrichment finds data.

The request processes all rows in the list. It creates or reuses these output columns: Email, First name, Last name, Company, Website, Industry, Title, Tags, Address, City, State, and Country. A column is populated only when enrichment finds the corresponding data. A profile is considered successfully enriched when it returns at least one value.

Endpoint

POST https://api.woodpecker.co/rest/v2/linkedin/post_profiles_collectors/enrichment_actions/enqueue

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

Use the UUID of a list created by collecting profiles from posts.

{
"list_uid": "5f17c0d2-5100-4bb9-a312-fd17f27f94c1"
}

Body schema

FieldTypeRequiredDescription
list_uidstringYesUUID of the list created by the LinkedIn post profile collection flow

Request samples

Enrich all profiles in a collected list

curl --request POST \
--url "https://api.woodpecker.co/rest/v2/linkedin/post_profiles_collectors/enrichment_actions/enqueue" \
--header "x-api-key: {YOUR_API_KEY}" \
--header "Content-Type: application/json" \
--data '{
"list_uid": "5f17c0d2-5100-4bb9-a312-fd17f27f94c1"
}'

Response

Response examples

The enrichment action was accepted for processing.

Save the returned action_uid. You will need it to check the enrichment status.

{
"action_uid": "89cb9618-945f-40f2-a147-86fd508933c2"
}

Body schema

FieldTypeDescription
action_uidstringEnrichment action UUID to use when checking its status