Developers

Build directly on GroveX market infrastructure.

REST and WebSocket interfaces for market data, account information and trading workflows, designed for professional integrations.

Low-latency feedsScoped credentialsWebSocket streams
market-data.js
const ws = new WebSocket(
  'wss://api.grovex.io/ws'
);

ws.send(JSON.stringify({
  op: 'subscribe',
  channel: 'ticker',
  symbol: 'BTC_USDT'
}));

// live market event
{
  "price": "67290.45",
  "change24h": "2.45%"
}
REST APIOrders, balances and account endpoints
WebSocketReal-time market and order events
SDK-readyStructured JSON request patterns
API keysPermission and IP-based controls
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_USDT

Returns 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/order

Submit an authenticated order using a scoped trading API key.

Use server-side secret storage and IP restrictions for production trading keys.