curl --request POST \
--url https://app.titanx.io/api/public/v2/contacts/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
{
"firstName": "<string>",
"lastName": "<string>",
"linkedInUrl": "<string>",
"email": "jsmith@example.com",
"companyLinkedInUrl": "<string>",
"website": "<string>",
"companyAccount": "<string>",
"phone": "<string>",
"phone2": "<string>",
"phone3": "<string>",
"phone4": "<string>",
"phone5": "<string>",
"contactCrmId": "<string>"
}
],
"scoringType": "lightning"
}
'{
"data": {
"totalRecordCount": 1,
"acceptedRecordCount": 1,
"jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"credits": {
"creditsCharged": 1,
"creditsRemaining": 1,
"costPerContact": 1,
"contactCount": 1
},
"error": {
"rejectedRecordCount": 1,
"records": [
"<unknown>"
]
}
}Enrich contacts by finding additional contact information and phone numbers. Billing is per contact processed. Supports up to 1000 contacts per request.
Each contact must include firstName, lastName, and at least one of the following identifiers: linkedInUrl, email, companyLinkedInUrl, or website.
curl --request POST \
--url https://app.titanx.io/api/public/v2/contacts/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
{
"firstName": "<string>",
"lastName": "<string>",
"linkedInUrl": "<string>",
"email": "jsmith@example.com",
"companyLinkedInUrl": "<string>",
"website": "<string>",
"companyAccount": "<string>",
"phone": "<string>",
"phone2": "<string>",
"phone3": "<string>",
"phone4": "<string>",
"phone5": "<string>",
"contactCrmId": "<string>"
}
],
"scoringType": "lightning"
}
'{
"data": {
"totalRecordCount": 1,
"acceptedRecordCount": 1,
"jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"credits": {
"creditsCharged": 1,
"creditsRemaining": 1,
"costPerContact": 1,
"contactCount": 1
},
"error": {
"rejectedRecordCount": 1,
"records": [
"<unknown>"
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.