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

# Get Customer Meter

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

Get a customer meter by ID.

**Scopes**: `customer_meters:read`

## Path parameters

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

## Response `200`

Successful Response

- CustomerMeter — An active customer meter, with current consumed and credited units.
  - `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.
  - `customer` Customer, required — unresolved $ref
  - `meter` Meter, required
    - `metadata` MetadataOutputType, 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.
    - `unit` 'scalar' | 'token' | 'custom', required
    - `custom_label` string, nullable — The label for the custom unit.
    - `custom_multiplier` integer, nullable — The multiplier to convert from base unit to display scale.
    - `filter` Filter, required
      - `conjunction` 'and' | 'or', required
      - `clauses` union[], required
        - union
          - FilterClause
            - `property` string, required
            - `operator` 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte' | 'like' | 'not_like', required
            - `value` union, required
              - …
          - Filter — recursive
    - `aggregation` union, required — The aggregation to apply on the filtered events to calculate the meter.
      - CountAggregation
        - `func` 'count'
      - PropertyAggregation
        - `func` 'sum' | 'max' | 'min' | 'avg', required
        - `property` string, required
      - UniqueAggregation
        - `func` 'unique'
        - `property` string, required
    - `organization_id` string, uuid4, required — The ID of the organization owning the meter.
    - `archived_at` string, date-time, nullable — Whether the meter is archived and the time it was archived.

## 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/1ee4b8be5abd/schema)
