GET
/
calls
List calls
curl --request GET \
  --url https://api.amplemarket.com/calls \
  --header 'Authorization: Bearer <token>'
{
  "calls": [
    {
      "id": "0198f652-7a71-7b88-9f77-f51707485f8d",
      "disposition_id": null,
      "duration": null,
      "external": false,
      "start_date": "2025-08-29T14:53:17Z",
      "from": "+351999999999",
      "to": "+351888888888",
      "notes": null,
      "transcription": null,
      "task_id": null,
      "user_id": "0198f652-79a5-78b9-91b2-204fc972943b",
      "human": false,
      "answered": null
    },
    {
      "id": "0198f652-7a4c-7f50-9786-1a8b89e5a2cd",
      "disposition_id": null,
      "duration": null,
      "external": false,
      "start_date": "2025-08-29T14:53:17Z",
      "from": "+351999999999",
      "to": "+351888888888",
      "notes": null,
      "transcription": null,
      "task_id": null,
      "user_id": "0198f652-79a5-78b9-91b2-204fc972943b",
      "human": false,
      "answered": null
    },
    {
      "id": "0198f652-7a1e-73d6-aae2-650cb44e46f4",
      "disposition_id": null,
      "duration": null,
      "external": false,
      "start_date": "2025-08-29T14:53:17Z",
      "from": "+351999999999",
      "to": "+351888888888",
      "notes": null,
      "transcription": null,
      "task_id": null,
      "user_id": "0198f652-79a5-78b9-91b2-204fc972943b",
      "human": false,
      "answered": null
    }
  ],
  "_links": {
    "self": {
      "href": "/calls?page[size]=20"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page[size]
string

Page size

page[after]
string

Page after

page[before]
string

Page before

user_id
string

Filter by user ID

from
string

Filter by call from number

to
string

Filter by call to number

start_date_from
string

Select calls starting after this date (ISO 8601 format)

start_date_to
string

Select calls starting before this date (ISO 8601 format)

Response

200
application/json

successful

The response is of type object.