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

# Get wallet balance overview



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/v1/wallets/{wallet_id}/overview
openapi: 3.0.3
info:
  title: Blockops Wallet API
  version: 0.1.0
  description: >
    The Blockops Wallet API: create MPC wallets, attach assets and read deposit
    addresses and balances, request withdrawals and signing, and manage webhooks
    and API keys.
servers:
  - url: https://wallet-sandbox.blockops.network
security:
  - AccessApiKey: []
    AccessTimestamp: []
    AccessSign: []
tags:
  - name: catalog
  - name: wallets
  - name: balances
  - name: withdrawals
  - name: transactions
  - name: signing
  - name: webhooks
  - name: api-keys
  - name: audit
  - name: observability
paths:
  /api/v1/wallets/{wallet_id}/overview:
    get:
      tags:
        - balances
      summary: Get wallet balance overview
      parameters:
        - $ref: '#/components/parameters/WalletID'
      responses:
        '200':
          description: Wallet balance overview.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WalletBalanceListEnvelope'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    WalletID:
      name: wallet_id
      in: path
      required: true
      schema:
        type: string
  schemas:
    WalletBalanceListEnvelope:
      allOf:
        - $ref: '#/components/schemas/EnvelopeBase'
        - type: object
          required:
            - data
          properties:
            data:
              type: array
              items:
                $ref: '#/components/schemas/WalletBalance'
    EnvelopeBase:
      type: object
      required:
        - success
        - message
        - code
      properties:
        success:
          type: boolean
        message:
          type: string
          example: success
        code:
          oneOf:
            - type: integer
            - type: string
          example: 0
    WalletBalance:
      type: object
      properties:
        wallet_id:
          type: string
        asset_id:
          type: string
        symbol:
          type: string
        name:
          type: string
        balance:
          type: string
        available_balance:
          type: string
        total_balance:
          type: string
        on_hold:
          type: string
        balance_usd:
          type: string
        usd_value:
          type: string
        value_usd:
          type: string
        price_usd:
          type: string
        decimals:
          type: integer
        asset:
          $ref: '#/components/schemas/Asset'
        network:
          $ref: '#/components/schemas/Network'
        refreshed_at:
          type: string
          format: date-time
    ErrorEnvelope:
      allOf:
        - $ref: '#/components/schemas/EnvelopeBase'
        - type: object
          required:
            - data
          properties:
            success:
              type: boolean
              example: false
            data:
              nullable: true
    Asset:
      type: object
      required:
        - id
      properties:
        id:
          type: string
        name:
          type: string
        symbol:
          type: string
        decimals:
          type: integer
        address:
          type: string
        contract_address:
          type: string
        asset_type:
          type: string
        is_native:
          type: boolean
        address_type:
          type: string
        is_whitelisted:
          type: boolean
        network_id:
          type: string
        network:
          $ref: '#/components/schemas/Network'
        price_usd:
          type: string
        logo_url:
          type: string
    Network:
      type: object
      required:
        - id
      properties:
        id:
          type: string
        name:
          type: string
        is_evm:
          type: boolean
        chain_id:
          type: integer
          format: int64
        native_currency:
          type: string
        is_testnet:
          type: boolean
        internal_code:
          type: string
        confirmation_blocks:
          type: integer
        disabled:
          type: boolean
        logo_url:
          type: string
  responses:
    Unauthorized:
      description: Authentication failed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
          example:
            success: false
            message: invalid api signature
            code: unauthorized
            data: null
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    AccessApiKey:
      type: apiKey
      in: header
      name: ACCESS-API-KEY
      description: HMAC API-key identifier.
    AccessTimestamp:
      type: apiKey
      in: header
      name: ACCESS-TIMESTAMP
      description: Unix timestamp in seconds.
    AccessSign:
      type: apiKey
      in: header
      name: ACCESS-SIGN
      description: Base64-encoded hex HMAC signature.

````