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:
20
Response
Successful
curl --request GET \
--url https://api.amplemarket.com/contacts?ids[]={id} \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "0199ba5c-1e43-72e1-bf29-a1f7ab021f1d",
"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-04T16:30:23Z",
"phone_numbers": [
{
"kind": "mobile",
"id": "0199ba5c-1d99-72bb-9bf3-051851c90269",
"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": "0199ba5c-1e43-72e1-bf29-a1f7ab021f1d",
"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-04T16:30:23Z",
"phone_numbers": [
{
"kind": "mobile",
"id": "0199ba5c-1d99-72bb-9bf3-051851c90269",
"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
Show child attributes
Was this page helpful?