curl --request GET \
--url https://api.amplemarket.com/contacts?ids[]={id} \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "019b32ae-b182-7501-89e7-9c7bbbf61b49",
"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-16T18:17:48Z",
"phone_numbers": [
{
"id": "019b32ae-b090-785f-8f72-3561a951f358",
"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": "019b32ae-b182-7501-89e7-9c7bbbf61b49",
"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-16T18:17:48Z",
"phone_numbers": [
{
"id": "019b32ae-b090-785f-8f72-3561a951f358",
"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?