GET
/
calls
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"
    }
  }
}

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.