Skip to main content
POST
/
v2
/
people
/
enrich
Enrich people with email and phone data
curl --request POST \
  --url https://api.tamtam.ai/api/v2/people/enrich \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "requests": [
    {
      "domain": "<string>",
      "enrich_fields": [
        "<string>"
      ],
      "firstname": "<string>",
      "lastname": "<string>",
      "company_name": "<string>",
      "custom": {},
      "linkedin_url": "<string>"
    }
  ]
}
'
{
  "item_count": 123,
  "request_id": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Account API key passed in the Authorization header

Body

application/json
requests
object[] | null
required

List of people to enrich

Required array length: 1 - 100 elements

Response

Accepted

item_count
integer<int64>
required

Number of items submitted

Example:

1

request_id
string
required

Unique identifier for polling enrichment results

Example:

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

status
string
required

Current status: PROCESSING, COMPLETED, FAILED

Example:

"PROCESSING"