POST
/
contacts
/
bulk_enrich
curl --request POST \
  --url https://app.prontohq.com/api/v2/contacts/bulk_enrich \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "contacts": [
    {
      "firstname": "Mathieu",
      "lastname": "Brun-Picard",
      "domain": "prontohq.com",
      "company_name": "Pronto",
      "linkedin_url": "https://www.linkedin.com/in/mathieu-brun-picard/",
      "custom": {
        "hubspot_id": "4447901"
      }
    },
    {
      "firstname": "Nicolas",
      "lastname": "Fernandez-Le Follic",
      "domain": "prontohq.com",
      "company_name": "Pronto",
      "linkedin_url": "https://www.linkedin.com/in/nicolasfernandezlefollic/",
      "custom": {
        "hubspot_id": "4447902"
      }
    }
  ],
  "webhook_url": "https://webhook.site/8b53c96f-f2cd-4c24-bc09-b3c2176d7ea8",
  "enrichment_type": [
    "email"
  ]
}'
{
  "enrichment_id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "queued"
}

Authorizations

X-API-KEY
string
header
required

Your API key

Body

application/json
Bulk contact information for enrichment
contacts
object[]
required
enrichment_type
enum<string>[]
required

Types of enrichment to perform

Available options:
phone,
email
webhook_url
string

Webhook URL to receive enrichment results

Response

202
application/json
Bulk enrichment request accepted
enrichment_id
string

The ID of the bulk enrichment job

status
enum<string>

The status of the bulk enrichment job

Available options:
queued,
processing