API ReferenceVordex API
Account & Orders
GET /v1/account/:address
Vault balances and agent status. Params: ?network=mainnet.
curl "https://rpc.vordium.com/v1/account/0xYourAddress?network=mainnet"{
"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.
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.
curl "https://rpc.vordium.com/v1/fills/0xYourAddress?network=mainnet"{
"data": [
{ "symbol": "ETH", "side": "buy", "price": "2184.50", "amount": "0.5", "usdcSettled": "1092.25", "txHash": "0x..." }
]
}