GET
/
contacts
/
email
/
{email}
curl --request GET \
  --url https://api.amplemarket.com/contacts/email/{email} \
  --header 'Authorization: Bearer <token>'
{
  "id": "019584f8-52f8-71a9-9c61-9394d6fbf7b5",
  "name": "John Doe",
  "first_name": "John",
  "last_name": "Doe",
  "linkedin_url": "https://linkedin.com/in/john-doe",
  "email": "john.doe@example.com",
  "time_zone": "Europe/Lisbon",
  "location": "Lisbon, Lisbon, Portugal",
  "title": "Software Engineer",
  "company_domain": "amplemarket.com",
  "company_name": "Amplemarket",
  "owner": "user@example.com",
  "recent_activity": [
    {
      "event_at": "2025-03-11T11:30:21Z",
      "event_type": "completed_without_reply",
      "sequence_type": "sequence",
      "sequence_name": "A sequence"
    },
    {
      "event_at": "2025-03-10T10:18:21Z",
      "event_type": "added_to_sequence",
      "sequence_type": "sequence",
      "sequence_name": "A sequence"
    }
  ],
  "phone_numbers": [
    {
      "kind": "mobile",
      "id": "019584f8-52b8-7b48-ad07-17012ea4cabd",
      "object": "phone_number",
      "number": "+1 639-300-0002",
      "type": "mobile"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

email
string
required

Contact email

Response

200 - application/vnd.amp+json
Successful
id
string
required
email
string | null
required
name
string | null
first_name
string | null
last_name
string | null
linkedin_url
string | null
title
string | null
location
string | null
time_zone
string | null
company_name
string | null
company_domain
string | null
owner
string | null
phone_numbers
object[]
recent_activity
object[]