Skip to main content
POST
/
api
/
public
/
v2
/
contacts
/
enrich
Enrich contacts
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>",
      "companyLinkedInUrl": "<string>",
      "website": "<string>",
      "companyAccount": "<string>",
      "phone": "<string>",
      "phone2": "<string>",
      "phone3": "<string>",
      "phone4": "<string>",
      "phone5": "<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": [
      "<any>"
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
contacts
object[]
required
Maximum length: 1000
scoringType
enum<string>
default:lightning
Available options:
lightning,
titan

Response

200 - application/json

Successful response with enrichment job information and credit details

data
object
required
credits
object
error
object