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
data
object[]
required

Array of contacts to enrich.

enrich_email_address
boolean
required

If true, work email address of the contact will be enriched.

enrich_phone_number
boolean
required

If true, direct phone number of the contact will be enriched.

webhook
string

You can provide a webhook URL where results will be pushed once enrichment is done.

process_flow
string

Add the process flow ID to use for your enrichment, if subscribed to the process flow add-on.

Response

201
application/json
Enrichment task created
success
boolean
id
string
message
string