curl --request GET \
--url https://api.amplemarket.com/calls \
--header 'Authorization: Bearer <token>'
{
"calls": [
{
"id": "01989da6-2a75-7fc4-867a-e1643e8de5fc",
"disposition_id": null,
"duration": null,
"external": false,
"start_date": "2025-08-12T09:38:29Z",
"from": "+351999999999",
"to": "+351888888888",
"notes": null,
"transcription": null,
"task_id": null,
"user_id": "01989da6-29eb-7d76-806b-8e278fb03e08",
"human": false,
"answered": null
},
{
"id": "01989da6-2a58-77c0-9810-106800e60436",
"disposition_id": null,
"duration": null,
"external": false,
"start_date": "2025-08-12T09:38:29Z",
"from": "+351999999999",
"to": "+351888888888",
"notes": null,
"transcription": null,
"task_id": null,
"user_id": "01989da6-29eb-7d76-806b-8e278fb03e08",
"human": false,
"answered": null
},
{
"id": "01989da6-2a3a-742e-b74c-1b7e5f91e696",
"disposition_id": null,
"duration": null,
"external": false,
"start_date": "2025-08-12T09:38:29Z",
"from": "+351999999999",
"to": "+351888888888",
"notes": null,
"transcription": null,
"task_id": null,
"user_id": "01989da6-29eb-7d76-806b-8e278fb03e08",
"human": false,
"answered": null
}
],
"_links": {
"self": {
"href": "/calls?page[size]=20"
}
}
}
List calls
curl --request GET \
--url https://api.amplemarket.com/calls \
--header 'Authorization: Bearer <token>'
{
"calls": [
{
"id": "01989da6-2a75-7fc4-867a-e1643e8de5fc",
"disposition_id": null,
"duration": null,
"external": false,
"start_date": "2025-08-12T09:38:29Z",
"from": "+351999999999",
"to": "+351888888888",
"notes": null,
"transcription": null,
"task_id": null,
"user_id": "01989da6-29eb-7d76-806b-8e278fb03e08",
"human": false,
"answered": null
},
{
"id": "01989da6-2a58-77c0-9810-106800e60436",
"disposition_id": null,
"duration": null,
"external": false,
"start_date": "2025-08-12T09:38:29Z",
"from": "+351999999999",
"to": "+351888888888",
"notes": null,
"transcription": null,
"task_id": null,
"user_id": "01989da6-29eb-7d76-806b-8e278fb03e08",
"human": false,
"answered": null
},
{
"id": "01989da6-2a3a-742e-b74c-1b7e5f91e696",
"disposition_id": null,
"duration": null,
"external": false,
"start_date": "2025-08-12T09:38:29Z",
"from": "+351999999999",
"to": "+351888888888",
"notes": null,
"transcription": null,
"task_id": null,
"user_id": "01989da6-29eb-7d76-806b-8e278fb03e08",
"human": false,
"answered": null
}
],
"_links": {
"self": {
"href": "/calls?page[size]=20"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Page size
Page after
Page before
Filter by user ID
Filter by call from number
Filter by call to number
Select calls starting after this date (ISO 8601 format)
Select calls starting before this date (ISO 8601 format)
successful
The response is of type object
.