Skip to main content
GET
/
contacts
/
{id}
Get single contact enrichment result
curl --request GET \
  --url https://app.prontohq.com/api/v2/contacts/{id} \
  --header 'X-API-KEY: <api-key>'
{
  "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

Query Parameters

enrichment_id
string<uuid>
required

The ID of the enrichment request to retrieve

Response

Enrichment result retrieved successfully

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

I