> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/stats/retrieve-all-calls.md).

# Retrieve All Calls

Use the `GET /stats/all-calls/` endpoint to retrieve statistics for all calls, including metrics such as total call count, answered calls, missed calls, and other related data. This endpoint does not require any parameters.

***

#### Parameters

This endpoint does not accept any parameters.

***

#### Responses

**200 OK**

**Description:** The request was successful, and call statistics were returned.

**Example Response:**

```json
{
  "total_calls": 1250,
  "answered_calls": 1125,
  "missed_calls": 125,
  "average_call_duration": "5m 30s",
  "peak_call_time": "2024-11-16T14:00:00Z"
}
```
