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

> Fetches the current real-time prepaid credit balance for a customer.

**Usage:** AI tools displaying 'Credits Remaining: 500' in their app header.



## OpenAPI

````yaml get /balances
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:
  /balances:
    get:
      tags:
        - Meters
      summary: Retrieve Customer Balance
      description: >-
        Fetches the current real-time prepaid credit balance for a customer.


        **Usage:** AI tools displaying 'Credits Remaining: 500' in their app
        header.
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad Request
        '401':
          description: Unauthorized

````