> 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-mechanic-statistics.md).

# Retrieve Mechanic Statistics

Use the `GET /stats/mechanic-statistics/` endpoint to retrieve statistics related to mechanics. This data can include performance metrics, service completion rates, or other relevant information.

***

#### Parameters

This endpoint does not require any parameters. Simply make a `GET` request to the specified endpoint to retrieve the mechanic statistics.

***

#### Responses

**200 OK**

**Description:** The request was successful, and the mechanic statistics data is returned.

**Example Response:**

```json
{
  "total_mechanics": 150,
  "active_mechanics": 120,
  "inactive_mechanics": 30,
  "average_rating": 4.5,
  "total_services_completed": 980
}
```
