Getting started
GroveX API overview
Use authenticated REST endpoints for account and trading actions, and WebSocket channels for time-sensitive market and order updates.
GET
/api/v1/market/ticker?symbol=BTC_USDTReturns the current ticker snapshot for a selected trading pair.
{
"symbol": "BTC_USDT",
"lastPrice": "67290.45",
"high24h": "68123.45",
"low24h": "64810.12",
"volume24h": "18542.36"
}POST
/api/v1/orderSubmit an authenticated order using a scoped trading API key.
Use server-side secret storage and IP restrictions for production trading keys.