---
title: "Retrieve network data consumption for a charge point"
method: GET
path: "/api/v1/charge-points/{chargePointId}/data-consumption"
tags: ["Charge Points"]
---

# Retrieve network data consumption for a charge point

`GET /api/v1/charge-points/{chargePointId}/data-consumption`

Returns a daily network data-usage histogram and total for the charge point. Defaults to the last 30 days. Required scope: `charge-points:read`

## Path parameters

- `chargePointId` integer, required

## Query parameters

- `startAt` string, date, nullable — Start of the reporting period (YYYY-MM-DD, UTC). Defaults to 30 days before `endAt`.
- `endAt` string, date, nullable — End of the reporting period (YYYY-MM-DD, UTC). Defaults to today.

## Response `200`

Network data consumption for the charge point

- ChargePointDataConsumption — Network (SIM) data consumption for a charge point over a period
  - `startAt` string, date, nullable — Start of the reporting period
  - `endAt` string, date, nullable — End of the reporting period
  - `totalConsumption` DataConsumptionTotal, required
    - `bytes` integer — Total bytes consumed
    - `megabytes` number, double — Total megabytes consumed (1 MB = 1,000,000 bytes)
  - `consumptions` DailyDataConsumption[], required — Data consumption per day
    - `date` string, date, required — Day of the consumption
    - `bytes` integer — Bytes consumed on the day
    - `megabytes` number, double — Megabytes consumed on the day (1 MB = 1,000,000 bytes)

## 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/versions/517e18f11015/schema)
