curl --request GET \
--url https://api.amplemarket.com/contacts?ids[]={id} \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "019b4aec-54b4-7fb1-ba1d-4c819b8a802a",
"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-12-21T11:16:00Z",
"phone_numbers": [
{
"id": "019b4aec-53b9-74ea-ad6f-4c1758b5d5bf",
"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": "019b4aec-54b4-7fb1-ba1d-4c819b8a802a",
"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-12-21T11:16:00Z",
"phone_numbers": [
{
"id": "019b4aec-53b9-74ea-ad6f-4c1758b5d5bf",
"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>'
Was this page helpful?