> ## 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.

# List all meters

> This endpoint lists all meters associated with a store identified by the `x-store-id` header. It supports pagination with `limit`, `page`, and `offset` query parameters. The response includes details such as meter name, event name, aggregation type, unit, and timestamps. This is useful for efficiently managing and analyzing data flow or consumption in specific store processes.



## OpenAPI

````yaml /api-reference/blink-api.json get /v1/meters
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:
  - storeIdHeader: []
tags:
  - name: Invoices
    description: Unified merchant of record invoices for products and subscriptions.
  - name: Geo Pricing
    description: Resolve Purchasing Power Parity (PPP) localized pricing.
paths:
  /v1/meters:
    get:
      tags:
        - Meters
      summary: List all meters
      description: >-
        This endpoint lists all meters associated with a store identified by the
        `x-store-id` header. It supports pagination with `limit`, `page`, and
        `offset` query parameters. The response includes details such as meter
        name, event name, aggregation type, unit, and timestamps. This is useful
        for efficiently managing and analyzing data flow or consumption in
        specific store processes.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
          description: Number of meters per page.
        - name: page
          in: query
          schema:
            type: integer
          description: Page number to retrieve.
        - name: offset
          in: query
          schema:
            type: integer
          description: Offset to start paginating from.
      responses:
        '200':
          description: List of meters with pagination.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetersList'
        '401':
          description: Unauthorized - Store ID header missing.
        '500':
          description: Internal Server Error.
      security:
        - storeIdHeader: []
components:
  schemas:
    MetersList:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            has_more:
              type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/MeterDetails'
    MeterDetails:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        unit:
          type: string
        store_id:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````