Skip to main content
GET
/
contacts
curl --request GET \
  --url https://api.amplemarket.com/contacts?ids[]={id} \
  --header 'Authorization: Bearer <token>'
{
  "contacts": [
    {
      "id": "019dfcc6-803e-7505-b8fd-6af3208ea098",
      "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",
      "last_contacted_at": "2026-05-04T10:12:40Z",
      "phone_numbers": [
        {
          "id": "019dfcc6-7ea2-745f-a1fb-e8d7d4ce8653",
          "object": "phone_number",
          "number": "+1 639-300-0002",
          "type": "mobile",
          "source": "amplemarket",
          "kind": "mobile"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.amplemarket.com/llms.txt

Use this file to discover all available pages before exploring further.

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

name
string

Optional contact name filter. Use with or without account_id as an alternative to ids[]

account_id
string<uuid>

Optional Prospect Hub account public ID filter. Use with or without name as an alternative to ids[]

ids[]
string[]

Optional contact ID filter (maximum of 20 ids). Use ids[] or name/account_id filters

Maximum array length: 20

Response

Successful

contacts
object[]