> ## 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 Meter Details

> This endpoint retrieves detailed information about a specific meter using the `id` path parameter. Requires the `x-store-id` header to ensure store association. Returns meter details including name and unit.



## OpenAPI

````yaml /api-reference/blink-api.json get /meters/{id}
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:
  /meters/{id}:
    get:
      tags:
        - Meters
      summary: Retrieve Meter Details
      description: >-
        This endpoint retrieves detailed information about a specific meter
        using the `id` path parameter. Requires the `x-store-id` header to
        ensure store association. Returns meter details including name and unit.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: ID of the meter.
      responses:
        '200':
          description: Meter details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeterDetails'
        '401':
          description: Unauthorized - Store ID header missing.
        '404':
          description: Meter not found.
      security:
        - storeIdHeader: []
components:
  schemas:
    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

````