---
title: "Retrieve insights about charge points."
method: GET
path: "/api/v1/insights/charges/charger-report"
tags: ["Insights"]
---

# Retrieve insights about charge points.

`GET /api/v1/insights/charges/charger-report`

Required scope: `insights:read`

Returns a list of charge points (owned by that `teamId`) with the number of charging sessions and the total Kwh consumed.

## Query parameters

- `page` integer
- `perPage` integer
- `teamId` integer, required — Filter to retrieve charge point insights by the specified `teamId`
- `chargePointIds` string, nullable — Filter to retrieve charges insights by the specified (comma-separated) list of `chargePointId`
- `fromDate` string, date, required — Filter to retrieve charge insights created from date, we expecta date in UTC and ISO8601 (YYYY-MM-DD'T'HH:MM:SS'Z')</br>The maximum gap between from and to data cannot be longer than 31 days
- `toDate` string, date, required — Filter to retrieve charge insights created to date, we expecta date in UTC and ISO8601 (YYYY-MM-DD'T'HH:MM:SS'Z')</br>The maximum gap between from and to data cannot be longer than 31 days

## Response `200`

Charger report for the given filter

- OffsetBasedResponse11
  - `data` ChargesInsightChargerReport[], required
    - `teamId` integer, required — Team ID used for this report
    - `chargePointId` integer, required — ID of the Charge Point
    - `lastChargeAt` string, date-time, nullable — Date time of the last charge at this charge point during the report period. Null if no charges were made.
    - `consumptions` ChargesInsightChargerReportDtoConsumption[], required — Charge consumptions
      - `totalSessions` integer, required — Number of charging sessions
      - `totalKwh` number, double, required — Sum of all Kwh consumed
  - `meta` MontaPageMeta, required
    - `itemCount` integer, required
    - `currentPage` integer, required
    - `perPage` integer, required
    - `totalPageCount` integer, required
    - `totalItemCount` integer, required

## Other responses

- `400` — The request is invalid
- `401` — Consumer with provided credentials was not found
- `403` — Operator doesn't have access to resource
- `404` — Entity with the provided id was not found

---

[API](https://skmtc.net/monta/apis/monta-partner-api.md) · [All operations](https://skmtc.net/monta/apis/monta-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/monta/monta-partner-api/revisions/517e18f11015/schema)
