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

# Get Chains Liquidity

> Returns solver liquidity balances per currency on a specified chain.



## OpenAPI

````yaml get /chains/liquidity
openapi: 3.0.3
info:
  title: Cross-chain solver
  version: 1.0.0
servers:
  - url: https://api.relay.link
    description: Mainnet API
  - url: https://api.testnets.relay.link
    description: Testnet API
security: []
paths:
  /chains/liquidity:
    get:
      parameters:
        - schema:
            type: number
          in: query
          name: chainId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  liquidity:
                    type: array
                    description: Solver balances per currency on the requested chain
                    items:
                      type: object
                      properties:
                        chainId:
                          type: number
                        currencyId:
                          type: string
                        symbol:
                          type: string
                        address:
                          type: string
                        decimals:
                          type: number
                        balance:
                          type: string
                          description: >-
                            Main EOA solver balance in the currency's smallest
                            unit (e.g. wei for ETH)
                        amountUsd:
                          type: string
                          description: Solver balance expressed in USD

````