Enrichments
Bulk Contact Enrichment
Enriches multiple contacts in bulk with specified data points.
POST
/
contacts
/
bulk_enrich
Copy
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"
]
}'
Copy
{
"enrichment_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "queued"
}
Authorizations
Your API key
Body
application/json
Bulk contact information for enrichment
The body is of type object
.
Response
202
application/json
Bulk enrichment request accepted
The response is of type object
.
Copy
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"
]
}'
Copy
{
"enrichment_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "queued"
}
Assistant
Responses are generated using AI and may contain mistakes.