POST
/
api
/
contacts
/
enrich
cURL
curl --request POST \
  --url https://app.titanx.io/api/contacts/enrich \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contacts": [
    {
      "firstName": "John",
      "lastName": "Doe",
      "email": "john.doe@example.com",
      "phone": "1234567890",
      "companyInfo": {
        "companyAccount": "ACME Corp"
      }
    }
  ]
}'
{
  "data": {
    "totalRecordCount": 123,
    "acceptedRecordCount": 123,
    "jobId": "<string>"
  },
  "error": {
    "rejectedRecordCount": 123,
    "records": [
      {
        "firstName": "<string>",
        "lastName": "<string>",
        "email": "jsmith@example.com",
        "phone": "<string>",
        "phone2": "<string>",
        "phone3": "<string>",
        "phone4": "<string>",
        "phone5": "<string>",
        "phoneExt": "<string>",
        "street": "<string>",
        "city": "<string>",
        "stateProvince": "<string>",
        "zipPostalCode": "<string>",
        "country": "<string>",
        "title": "<string>",
        "companyAccount": "<string>",
        "website": "<string>",
        "linkedInUrl": "<string>",
        "companyLinkedInUrl": "<string>",
        "persona": "<string>",
        "dept": "<string>",
        "level": "<string>",
        "jobFunction": "<string>",
        "timeZone": "<string>",
        "companyCountry": "<string>",
        "companyState": "<string>",
        "companyCity": "<string>",
        "companyZip": "<string>",
        "companyAddress": "<string>",
        "numberOfEmployees": 123,
        "annualRevenue": 123,
        "industry": "<string>",
        "primarySubIndustry": "<string>",
        "sicCodes": "<string>",
        "naicsCodes": "<string>",
        "technologies": "<string>",
        "recordOwner": "<string>",
        "contactCrmId": "<string>",
        "accountCrmId": "<string>",
        "databaseContactId": "<string>",
        "databaseCompanyId": "<string>",
        "campaignListName": "<string>",
        "callbackUrl": "<string>",
        "rejectedReason": "<string>"
      }
    ]
  }
}
Enrichment API is in development, expecting to launch in early Q4 2024!
When submitting contacts for enrichment, you must submit one of the following for each contact: - Company Account - LinkedIn URL - Company LinkedIn URL

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200 - application/json

Successful response

The response is of type object.