GET
/
contacts
/
email
/
{email}
curl --request GET \
  --url https://api.amplemarket.com/contacts/email/{email} \
  --header 'Authorization: Bearer <token>'
{
  "id": "01952829-1bf8-7d2f-a608-4770c2fb23ec",
  "name": "Example Contact",
  "linkedin_url": "https://linkedin.com/in/example",
  "email": "contact@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-02-21T10:58:57Z",
      "event_type": "completed_without_reply",
      "sequence_type": "sequence",
      "sequence_name": "A sequence"
    },
    {
      "event_at": "2025-02-20T09:46:57Z",
      "event_type": "added_to_sequence",
      "sequence_type": "sequence",
      "sequence_name": "A sequence"
    }
  ],
  "phone_numbers": [
    {
      "kind": "mobile",
      "id": "01952829-1bc3-795e-8d4d-78430c3fe7e2",
      "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
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[]