Contacts
List contacts
API Reference
Account Details
Users
People Enrichment
Companies Enrichment
Searcher
Email Validation
Exclusion lists
Sequences
Phone numbers
Contacts
List contacts
List contacts
GET
/
contacts
curl --request GET \
--url https://api.amplemarket.com/contacts \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "019584f8-52f8-71a9-9c61-9394d6fbf7b5",
"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",
"phone_numbers": [
{
"kind": "mobile",
"id": "019584f8-52b8-7b48-ad07-17012ea4cabd",
"object": "phone_number",
"number": "+1 639-300-0002",
"type": "mobile"
}
]
}
]
}
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)
Response
200
application/vnd.amp+json
Successful
Was this page helpful?
curl --request GET \
--url https://api.amplemarket.com/contacts \
--header 'Authorization: Bearer <token>'
{
"contacts": [
{
"id": "019584f8-52f8-71a9-9c61-9394d6fbf7b5",
"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",
"phone_numbers": [
{
"kind": "mobile",
"id": "019584f8-52b8-7b48-ad07-17012ea4cabd",
"object": "phone_number",
"number": "+1 639-300-0002",
"type": "mobile"
}
]
}
]
}