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

# Get Wallet Balance

> Retrieves the balance of a specific wallet.



## OpenAPI

````yaml /api/swagger.json get /wallets/{wallet_id}/balance
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /wallets/{wallet_id}/balance:
    get:
      tags:
        - Wallet
      summary: Get Wallet Balance
      description: Retrieves the balance of a specific wallet.
      parameters:
        - name: wallet_id
          in: path
          description: Wallet ID
          required: true
          schema:
            type: string
        - name: token_address
          in: query
          description: Token Address
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.getWalletBalanceResponse'
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.getWalletBalanceResponse:
      type: object
      properties:
        amount:
          type: string
        token_info:
          $ref: '#/components/schemas/models.TokenInfo'
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string
    models.TokenInfo:
      type: object
      properties:
        address:
          type: string
        decimals:
          type: integer
        is_stable:
          type: boolean
        metadata:
          $ref: '#/components/schemas/models.TokenMetadata'
        owner:
          type: string
        supply:
          type: integer
    models.TokenMetadata:
      type: object
      properties:
        name:
          type: string
        symbol:
          type: string
        uri:
          type: string

````