Skip to main content
GET
/
v1
/
public
/
vault_balance
Get vault balance
curl --request GET \
  --url https://api.orderly.org/v1/public/vault_balance
{
  "success": true,
  "data": {
    "rows": [
      {
        "chain_id": 80001,
        "token": "USDC",
        "balance": 1000.12345
      }
    ]
  },
  "timestamp": 1702989203989
}

Query Parameters

chain_id
string

Chain ID to query. Use 900900900 for Solana.

token
string

Token symbol to query, for example USDC. If omitted, returns all supported tokens.

Response

200 - application/json

OK

success
boolean
required

Indicates whether the request was successful.

Example:

true

data
object
required
timestamp
integer

Server timestamp in milliseconds.

Example:

1702989203989