> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blink.store/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve customer meter balances

> Provides the balance of credits for each meter associated with a customer. Meters track specific activities or resources, and this endpoint shows how much credit remains.

**Usage:** Useful for analyzing customer usage and planning billing adjustments, if applicable.



## OpenAPI

````yaml get /customers/{id}/meter-balance
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /customers/{id}/meter-balance:
    get:
      tags:
        - Customers
      summary: Retrieve customer meter balances
      description: >-
        Provides the balance of credits for each meter associated with a
        customer. Meters track specific activities or resources, and this
        endpoint shows how much credit remains.


        **Usage:** Useful for analyzing customer usage and planning billing
        adjustments, if applicable.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Customer meter balances retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerMeterBalanceResponse'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    CustomerMeterBalanceResponse:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              meter_id:
                type: string
              subscription_id:
                type: string
              total_credits:
                type: number
              used_credits:
                type: number
              rollover_unused:
                type: boolean
              created_at:
                type: string
                format: date-time
              updated_at:
                type: string
                format: date-time
              remaining_credits:
                type: number
              meter:
                type: object
                properties:
                  id:
                    type: string
                  name:
                    type: string
                  event_name:
                    type: string
                  unit:
                    type: string

````