POST
/
contact
/
enrich
/
bulk
curl --request POST \
  --url https://app.fullenrich.com/api/v1/contact/enrich/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Sales Operations in London",
  "webhook_url": "https://example.com/webhook",
  "datas": [
    {
      "firstname": "john",
      "lastname": "snow",
      "domain": "example.com",
      "company_name": "example inc",
      "linkedin_url": "https://www.linkedin.com/in/demoge/",
      "enrich_fields": [
        "contact.emails",
        "contact.phones"
      ],
      "custom": {
        "user_id": "12584"
      }
    }
  ]
}'
{
  "enrichment_id": "2db5ea61-1752-42cf-8ea1-ab1da060cd0a"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
datas
object[]
required
webhook_url
string

If you are using n8n, this is where you add the Webhook that will be triggered when the enrichment is done.

Response

200
application/json
OK
enrichment_id
string