Skip to main content
POST
/
contact
cURL
curl --request POST \
  --url https://anyenrich.com/v1/enrich/contact \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "linkedinIdentifier": "<string>",
  "nameIdentifier": {
    "firstName": "<string>",
    "lastName": "<string>",
    "companyName": "<string>",
    "companyWebsite": "<string>"
  },
  "basicLinkedinInfo": true,
  "email": true,
  "phone": true,
  "query": "<string>"
}'
{
  "id": "<string>",
  "status": "success",
  "credits_used": 123,
  "credits_remaining": 123,
  "basic_linkedin_data": {
    "linkedin_bio": "<string>",
    "linkedin_headline": "<string>",
    "linkedin_current_title": "<string>",
    "linkedin_current_company": "<string>",
    "linkedin_job_description": "<string>",
    "linkedin_education": "<string>"
  },
  "email": "<string>",
  "phone": "<string>",
  "query_response": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Company enrichment object

linkedinIdentifier
string | null

Linkedin Url of the contact you want to enrich. You must provide either linkedinIdentifier or nameIdentifier

nameIdentifier
object | null

Name and company name of the contact you want to enrich. You must provide either linkedinIdentifier or nameIdentifier

basicLinkedinInfo
boolean | null

Request basic linkedin data for the contact you want to enrich.

Consumes 1 credit.

email
boolean | null

Request email for the contact.

Consumes 2 credit if a valid email is found.

phone
boolean | null

Request phone number for the contact.

Consumes 10 credit if a valid phone number is found.

query
string | null

Request AI queries you want to include in the enrichment request. You can use natural language to describe the query and our AI will do the rest.

Consumes 1 Credit

Response

Contact enrichment response

id
string

Unique identifier for the enrichment request

status
enum<string>
Available options:
success,
info_not_found
credits_used
number

Number of credits used for the enrichment request

credits_remaining
number

Number of credits remaining for the enrichment request

basic_linkedin_data
object | null

Firmographic data that was enriched

email
string | null

email for the contact

phone
string | null

phone for the contact

query_response
string | null

Response to any additional enrichment queries, empty if no query was provided