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

# Post /v2/info/balances

> Get the balances of a given set of assets on a given chain and wallet address. Compatible with all Skip Go-supported assets, excluding CW20 assets, across SVM, EVM, and Cosmos chains.



## OpenAPI

````yaml swagger post /v2/info/balances
openapi: 3.0.0
info:
  title: Skip Go API
  description: >-
    Simple APIs to build seamless cross-chain products that do more with fewer
    transactions. For devs with all levels of cross-chain experience.
  version: 0.1.0
servers:
  - url: https://api.skip.build
    description: Production
  - url: https://api.dev.skip.build
    description: Development
  - url: http://localhost:8080
    description: Local
security: []
tags:
  - name: Info
    description: APIs that return general information useful for a variety of operations
  - name: Fungible
    description: >-
      APIs swaps, transfers, and contract calls within the IBC/Cosmos Ecosystem,
      EVM ecosystem, and between them, including automatic DEX aggregation,
      bridge routing, and denom recommendation. Typical usage is /route to
      generate routing info and quotes, followed by /msgs to generate msgs for
      signing
  - name: Transaction
    description: >-
      APIs for broadcasting transactions within the IBC/Cosmos ecosystem, EVM
      ecosystem, and between them, and tracking their status and any subsequent
      transfers if routing assets cross chain. Typical usage is /submit to
      broadcast a transaction, followed by /status to query its status
paths:
  /v2/info/balances:
    post:
      tags:
        - Info
      description: >-
        Get the balances of a given set of assets on a given chain and wallet
        address. Compatible with all Skip Go-supported assets, excluding CW20
        assets, across SVM, EVM, and Cosmos chains.
      operationId: balances
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BalancesRequest'
            example:
              chains:
                '137':
                  address: '0x24a9267cE9e0a8F4467B584FDDa12baf1Df772B5'
                  denoms:
                    - polygon-native
                    - '0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359'
                osmosis-1:
                  address: osmo12xufazw43lanl8dkvf3l7y9zzm8n3zswftw2yc
                  denoms:
                    - uosmo
      responses:
        '200':
          description: The balances of the assets
          content:
            application/json:
              schema:
                type: object
                properties:
                  chains:
                    type: object
                    additionalProperties:
                      $ref: '#/components/schemas/BalanceResponseChainEntry'
              example:
                chains:
                  '137':
                    address: '0x24a9267cE9e0a8F4467B584FDDa12baf1Df772B5'
                    denoms:
                      polygon-native:
                        amount: '58477097336215771549'
                        decimals: 18
                        formatted_amount: '58.477097336215771549'
                        price: '0.406894'
                        value_usd: '23.793980'
                      '0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359':
                        amount: '100000000'
                        decimals: 6
                        formatted_amount: '100.000000'
                        price: '0.581495'
                        value_usd: '58.1495'
                  osmosis-1:
                    address: osmo12xufazw43lanl8dkvf3l7y9zzm8n3zswftw2yc
                    denoms:
                      uosmo:
                        amount: '100000000'
                        decimals: 6
                        formatted_amount: '100.000000'
                        price: '0.581495'
                        value_usd: '58.1495'
components:
  schemas:
    BalancesRequest:
      type: object
      properties:
        chains:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/BalanceRequestChainEntry'
    BalanceResponseChainEntry:
      type: object
      properties:
        denoms:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/BalanceResponseDenomEntry'
    BalanceRequestChainEntry:
      properties:
        address:
          type: string
          description: Address of the wallet that the balance is requested for
        denoms:
          type: array
          description: Denoms of the assets to get the balance for
          items:
            type: string
    BalanceResponseDenomEntry:
      type: object
      required:
        - amount
        - formatted_amount
      properties:
        amount:
          type: string
        decimals:
          type: integer
          format: int32
          nullable: true
        formatted_amount:
          type: string
        price:
          type: string
          nullable: true
        value_usd:
          type: string
          nullable: true
        error:
          $ref: '#/components/schemas/ApiError'
          nullable: true
    ApiError:
      properties:
        message:
          description: Error message
          type: string
      type: object

````