Skip to main content
GET
/
calls
List calls
curl --request GET \
  --url https://api.goyappr.com/calls \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "<string>",
      "direction": "<string>",
      "to": "<string>",
      "from": "<string>",
      "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "duration_seconds": 123,
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Your Yappr API key (e.g. ypr_live_...). Generate one in the dashboard under Settings → API Keys.

Query Parameters

limit
integer
default:20
offset
integer
default:0
status
enum<string>
Available options:
queued,
in_progress,
completed,
failed
direction
enum<string>
Available options:
inbound,
outbound

Response

200 - application/json

List of calls

data
object[]