curl --request GET \
--url https://api.amplemarket.com/contacts?ids[]={id} \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "0197c138-b1a9-7b58-810c-ed757575f1a7",
"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": "2025-06-28T14:23:27Z",
"phone_numbers": [
{
"kind": "mobile",
"id": "0197c138-b178-73e2-980e-0a42408e9094",
"object": "phone_number",
"number": "+1 639-300-0002",
"type": "mobile"
}
]
}
]
}
Retrieve contacts
curl --request GET \
--url https://api.amplemarket.com/contacts?ids[]={id} \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "0197c138-b1a9-7b58-810c-ed757575f1a7",
"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": "2025-06-28T14:23:27Z",
"phone_numbers": [
{
"kind": "mobile",
"id": "0197c138-b178-73e2-980e-0a42408e9094",
"object": "phone_number",
"number": "+1 639-300-0002",
"type": "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)
20
Successful
The response is of type object
.
Was this page helpful?