Skip to main content
POST
/
v1
/
contacts
Get contacts by IDs
curl --request POST \
  --url https://api.tamtam.ai/api/v1/contacts \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contact_ids": [
    "<string>"
  ]
}
'
[
  {
    "company_linkedin_id": "<string>",
    "company_linkedin_slug": "<string>",
    "company_name": "<string>",
    "contact_id": "<string>",
    "email": "<string>",
    "first_name": "<string>",
    "job_title": "<string>",
    "last_name": "<string>",
    "linkedin_url": "<string>",
    "location": "<string>",
    "phone": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Account API key passed in the Authorization header

Body

application/json
contact_ids
string[] | null
required

List of contact UUIDs to retrieve

Example:
["b3c6f5e2-1234-4abc-9def-0123456789ab"]

Response

object[] | null

OK

company_linkedin_id
string

Company LinkedIn ID

Example:

"104924588"

company_linkedin_slug
string

Company LinkedIn slug

Example:

"tamtam-ai"

company_name
string

Current company name

Example:

"TAMTAM"

contact_id
string

Contact UUID

Example:

"b3c6f5e2-1234-4abc-9def-0123456789ab"

email
string

Contact email address

Example:

"elliot.alderson@tamtam.ai"

first_name
string

Contact first name

Example:

"Elliot"

job_title
string

Current job title

Example:

"Head of Sales"

last_name
string

Contact last name

Example:

"Alderson"

linkedin_url
string

LinkedIn profile URL

Example:

"https://www.linkedin.com/in/elliot-alderson"

location
string

Contact location

Example:

"Paris, France"

phone
string

Contact phone number

Example:

"+33639981234"