Skip to main content
GET
/
contacts
curl --request GET \
  --url https://api.amplemarket.com/contacts?ids[]={id} \
  --header 'Authorization: Bearer <token>'
{
  "contacts": [
    {
      "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"
        }
      ]
    }
  ]
}
curl --request GET \
  --url https://api.amplemarket.com/contacts?ids[]={id} \
  --header 'Authorization: Bearer <token>'

Authorizations

Authorization
string
header
required

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

Query Parameters

ids[]
string[]
required

Filter by contact ids (maximum of 20 ids)

Maximum array length: 20

Response

Successful

contacts
object[]