Endpoints
Enrich leads
Endpoints
Enrich leads
Create a new enrichment
POST
/
async
curl --request POST \
--url https://app.bettercontact.rocks/api/v2/async \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"first_name": "<string>",
"last_name": "<string>",
"company": "<string>",
"company_domain": "<string>",
"linkedin_url": "<string>",
"custom_fields": {
"uuid": "<string>",
"list_name": "<string>"
}
}
],
"enrich_email_address": true,
"enrich_phone_number": true,
"webhook": "<string>",
"process_flow": "<string>"
}'
{
"success": true,
"id": "your-request-id",
"message": "Processing..."
}
Body
application/json
Data to enrich
The body is of type object
.
Response
201
application/json
Enrichment task created
The response is of type object
.
curl --request POST \
--url https://app.bettercontact.rocks/api/v2/async \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"first_name": "<string>",
"last_name": "<string>",
"company": "<string>",
"company_domain": "<string>",
"linkedin_url": "<string>",
"custom_fields": {
"uuid": "<string>",
"list_name": "<string>"
}
}
],
"enrich_email_address": true,
"enrich_phone_number": true,
"webhook": "<string>",
"process_flow": "<string>"
}'
{
"success": true,
"id": "your-request-id",
"message": "Processing..."
}