Skip to main content
GET
/
contacts
/
email
/
{email}
Retrieve contact by email
curl --request GET \
  --url https://api.amplemarket.com/contacts/email/{email} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "<string>",
  "name": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "linkedin_url": "<string>",
  "title": "<string>",
  "location": "<string>",
  "time_zone": "<string>",
  "company_name": "<string>",
  "company_domain": "<string>",
  "owner": "<string>",
  "last_contacted_at": "<string>",
  "phone_numbers": [
    {
      "object": "phone_number",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "number": "<string>",
      "type": "mobile",
      "source": "amplemarket"
    }
  ],
  "recent_activity": [
    {
      "event_at": "<string>",
      "event_type": "<string>",
      "automatic": true,
      "type": "<string>",
      "description": "<string>",
      "subject": "<string>",
      "body": "<string>",
      "sequence_name": "<string>",
      "sequence_type": "<string>",
      "index": 123,
      "tags": [
        "<string>"
      ],
      "notes": "<string>",
      "call_disposition": "<string>",
      "call_notes": "<string>"
    }
  ]
}

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/json

Successful

id
string<uuid>
required
email
string | null
required
name
string | null
first_name
string | null
last_name
string | null
linkedin_url
string<uri> | null
title
string | null
location
string | null
time_zone
string | null
company_name
string | null
company_domain
string | null
owner
string | null
last_contacted_at
string<date_time> | null
phone_numbers
object[]
recent_activity
object[]