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": "019a01e3-4879-73d4-a911-529aff2ec1a4",
"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-10-18T13:51:03Z",
"phone_numbers": [
{
"kind": "mobile",
"id": "019a01e3-4820-7a15-979b-4f3d95a1882b",
"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": "019a01e3-4879-73d4-a911-529aff2ec1a4",
"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-10-18T13:51:03Z",
"phone_numbers": [
{
"kind": "mobile",
"id": "019a01e3-4820-7a15-979b-4f3d95a1882b",
"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)
20Successful
Show child attributes
Was this page helpful?