---
title: "Get Customer Meter"
method: GET
path: "/v1/customer-portal/meters/{id}"
tags: ["customer_portal", "customer_meters", "public"]
---

# Get Customer Meter

`GET /v1/customer-portal/meters/{id}`

Get a meter by ID for the authenticated customer.

**Scopes**: `customer_portal:read` `customer_portal:write`

## Path parameters

- `id` string, uuid4, required — The customer meter ID.

## Response `200`

Successful Response

- CustomerCustomerMeter
  - `id` string, uuid4, required — The ID of the object.
  - `created_at` string, date-time, required — Creation timestamp of the object.
  - `modified_at` string, date-time, nullable, required — Last modification timestamp of the object.
  - `customer_id` string, uuid4, required — The ID of the customer.
  - `meter_id` string, uuid4, required — The ID of the meter.
  - `consumed_units` number, required — The number of consumed units.
  - `credited_units` integer, required — The number of credited units.
  - `balance` number, required — The balance of the meter, i.e. the difference between credited and consumed units.
  - `meter` CustomerCustomerMeterMeter, required
    - `created_at` string, date-time, required — Creation timestamp of the object.
    - `modified_at` string, date-time, nullable, required — Last modification timestamp of the object.
    - `id` string, uuid4, required — The ID of the object.
    - `name` string, required — The name of the meter. Will be shown on customer's invoices and usage.

## Other responses

- `404` — Customer meter not found.
- `422` — Validation Error

---

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