Skip to main content
POST
/
contacts
/
single_enrich
Enrich a single contact
curl --request POST \
  --url https://app.prontohq.com/api/v2/contacts/single_enrich \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "firstname": "Mathieu",
  "lastname": "Brun-Picard",
  "domain": "prontohq.com",
  "company_name": "Pronto",
  "linkedin_url": "https://www.linkedin.com/in/mathieu-brun-picard/",
  "webhook_url": "https://webhook.site/8b53c96f-f2cd-4c24-bc09-b3c2176d7ea8",
  "enrichment_type": [
    "phone"
  ],
  "custom": {
    "hubspot_id": "4447901"
  }
}'
{
  "enrichment_id": "123e4567-e89b-12d3-a456-426614174000",
  "first_name": "Mathieu",
  "last_name": "Brun-Picard",
  "email": "mathieu@prontohq.com",
  "phone": "+12015550123",
  "status": "success",
  "custom": {
    "hubspot_id": "4447901"
  }
}

Authorizations

X-API-KEY
string
header
required

Your API key

Body

application/json

Contact information for enrichment

firstname
string
required

First name of the contact

lastname
string
required

Last name of the contact

enrichment_type
enum<string>[]
required

Type of enrichment to perform

Maximum length: 1
company_name
string

Company name of the contact

domain
string

Company domain

linkedin_url
string<uri>

LinkedIn profile URL of the contact

webhook_url
string<uri>

Webhook URL to receive enrichment results

custom
object

Custom fields to include with the enrichment that will be returned in the webhook (like crm id, etc.)

Response

Enrichment request finished

enrichment_id
string<uuid>

The ID of the enrichment request

email
string<email>

The enriched email address

first_name
string

The contact's first name

last_name
string

The contact's last name

status
enum<string>

The status of the enrichment request

Available options:
success,
error,
pending
phone
string

The enriched phone number

custom
object

Custom fields passed in the request