> ## Documentation Index
> Fetch the complete documentation index at: https://docs.greetmate.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# [GET] /api/zapier/call_ended/list

> Return sample data (last 10 calls with end details) for Call Ended trigger.

> See shared authentication and headers in Zapier API Overview.

### Response Items

* `call_id` (string)
* `from` (string)
* `to` (string)
* `external_number` (string)
* `greetmate_number` (string)
* `direction` (string): `inbound` or `outbound`
* `start_time_utc` (string)
* `start_time_account` (string)
* `end_time_utc` (string|null)
* `end_time_account` (string)
* `transcription` (string|null)
* `summary` (string|null)
* `variables` (object|null)
* `team_id` (integer)

### Example Item

```json theme={null}
{
  "call_id": "call_abc123",
  "from": "+15551234567",
  "to": "+15557654321",
  "external_number": "+15551234567",
  "greetmate_number": "+15557654321",
  "direction": "outbound",
  "start_time_utc": "2025-12-01 10:23:45",
  "start_time_account": "2025-12-01 05:23:45",
  "end_time_utc": "2025-12-01 10:31:12",
  "end_time_account": "2025-12-01 05:31:12",
  "transcription": "Hello...",
  "summary": "Lead asked for pricing.",
  "variables": {"lead_name": "Jane Doe"},
  "team_id": 42
}
```
