Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Filter by contact ids (maximum of 20 ids)
Maximum length:
20Response
Successful
curl --request GET \
--url https://api.amplemarket.com/contacts?ids[]={id} \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "019a79fa-4103-7722-ad96-9b21a1027205",
"name": "John Doe",
"first_name": "John",
"last_name": "Doe",
"linkedin_url": "https://linkedin.com/in/john-doe",
"email": "[email protected]",
"time_zone": "Europe/Lisbon",
"location": "Lisbon, Lisbon, Portugal",
"title": "Software Engineer",
"company_domain": "amplemarket.com",
"company_name": "Amplemarket",
"owner": "[email protected]",
"last_contacted_at": "2025-11-10T21:30:35Z",
"phone_numbers": [
{
"id": "019a79fa-4081-7537-be33-1599fdc5c8e7",
"object": "phone_number",
"number": "+1 639-300-0002",
"type": "mobile",
"source": "amplemarket",
"kind": "mobile"
}
]
}
]
}Retrieve contacts
curl --request GET \
--url https://api.amplemarket.com/contacts?ids[]={id} \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "019a79fa-4103-7722-ad96-9b21a1027205",
"name": "John Doe",
"first_name": "John",
"last_name": "Doe",
"linkedin_url": "https://linkedin.com/in/john-doe",
"email": "[email protected]",
"time_zone": "Europe/Lisbon",
"location": "Lisbon, Lisbon, Portugal",
"title": "Software Engineer",
"company_domain": "amplemarket.com",
"company_name": "Amplemarket",
"owner": "[email protected]",
"last_contacted_at": "2025-11-10T21:30:35Z",
"phone_numbers": [
{
"id": "019a79fa-4081-7537-be33-1599fdc5c8e7",
"object": "phone_number",
"number": "+1 639-300-0002",
"type": "mobile",
"source": "amplemarket",
"kind": "mobile"
}
]
}
]
}curl --request GET \
--url https://api.amplemarket.com/contacts?ids[]={id} \
--header 'Authorization: Bearer <token>'
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter by contact ids (maximum of 20 ids)
20Successful
Show child attributes
Was this page helpful?