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

# Get balances

> This endpoint allows you to retrieve all balances for a wallet.



## OpenAPI

````yaml openapi.json get /balances
openapi: 3.0.3
info:
  title: Bread API
  description: >-
    The Bread provides comprehensive cryptocurrency wallet management
    capabilities including wallet creation, balance monitoring, and asset
    transfers.
  version: 2.0.0
servers:
  - url: https://processor-prod.up.railway.app
    description: Production server
security: []
paths:
  /balances:
    get:
      tags:
        - Balance
      summary: Get balances
      description: This endpoint allows you to retrieve all balances for a wallet.
      operationId: getBalances
      parameters:
        - name: wallet_id
          in: query
          required: true
          description: The wallet ID to get balances for
          schema:
            type: string
            example: 68bc290df51feea8c53f5275
      responses:
        '200':
          description: Balances fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBalancesResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    GetBalancesResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        status:
          type: integer
          example: 200
        message:
          type: string
          example: Balances fetched successfully
        timestamp:
          type: string
          format: date-time
          example: '2025-09-09T17:42:01.623Z'
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                description: Unique identifier for the asset
                example: bsc:usdt
              name:
                type: string
                description: Full name of the asset
                example: Tether
              code:
                type: string
                description: Asset code/symbol
                example: USDT
              blockchain:
                type: object
                properties:
                  id:
                    type: integer
                    description: Blockchain identifier
                    example: 56
                  name:
                    type: string
                    description: Blockchain name
                    example: BNB Chain
              balance:
                type: number
                description: Total balance amount
                example: 100
              available:
                type: number
                description: Available balance amount
                example: 100
              debt:
                type: number
                description: Debt amount
                example: 0
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-service-key

````