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

# Get vault balance

> Returns the current vault balance by chain and token. Use `chain_id` and `token` to narrow the result set.



## OpenAPI

````yaml orderly.openapi get /v1/public/vault_balance
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/public/vault_balance:
    get:
      tags:
        - public
      summary: Get vault balance
      description: >-
        Returns the current vault balance by chain and token. Use `chain_id` and
        `token` to narrow the result set.
      parameters:
        - name: chain_id
          in: query
          description: Chain ID to query. Use `900900900` for Solana.
          required: false
          example: ''
          schema:
            type: string
        - name: token
          in: query
          description: >-
            Token symbol to query, for example `USDC`. If omitted, returns all
            supported tokens.
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultBalanceResponse'
      deprecated: false
components:
  schemas:
    VaultBalanceResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  description: Vault balance entries that match the requested filters.
                  type: array
                  items:
                    type: object
                    properties:
                      chain_id:
                        description: Chain ID for the reported balance.
                        type: integer
                        example: 80001
                      token:
                        description: Token symbol for the reported balance.
                        type: string
                        example: USDC
                      balance:
                        description: Available vault balance for the token on the chain.
                        type: number
                        example: 1000.12345
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````