Skip to main content

Calls API

List recent calls for your organization.

GET /api/v1/calls

Query parameters

  • limit (integer) — default 25, max 100

Example request

curl -H "Authorization: Bearer grtq_…" "https://greetq.com/api/v1/calls?limit=10"

Example response

{
  "calls": [
    {
      "id": "uuid",
      "direction": "inbound",
      "from_number": "+16045550100",
      "status": "completed",
      "duration_seconds": 94,
      "summary": "Caller booked appointment for Tuesday 2pm"
    }
  ]
}