VORDIUM DOCS
API ReferenceVordex API

Account & Orders

GET /v1/account/:address

Vault balances and agent status. Params: ?network=mainnet.

Bash
curl "https://rpc.vordium.com/v1/account/0xYourAddress?network=mainnet"
JSON
{
  "data": { "address": "0x...", "freeBalance": "10000.00", "lockedBalance": "2500.00", "totalBalance": "12500.00", "isAgent": false }
}

GET /v1/orders/:address

Last 50 orders for a trader with status, fill amount, and agent flag.

Bash
curl "https://rpc.vordium.com/v1/orders/0xYourAddress?network=mainnet"

GET /v1/fills/:address

Recent fill history from TradeExecuted events. Shows buys and sells for the address.

Bash
curl "https://rpc.vordium.com/v1/fills/0xYourAddress?network=mainnet"
JSON
{
  "data": [
    { "symbol": "ETH", "side": "buy", "price": "2184.50", "amount": "0.5", "usdcSettled": "1092.25", "txHash": "0x..." }
  ]
}