Developers

Built for builders, market makers, and integrators.

Complete API coverage for market data, orders, settlement, and audit data.

Public

REST API

Standard HTTP interface for market queries, order placement, account status, and historical data.

Realtime

WebSocket API

Real-time push for depth, ticker, trades, candlestick charts, and order status updates.

Authenticated

HMAC API

Institutional-grade signature authentication for market makers and automated trading systems.

Compatible

TradingView UDF

Standard TradingView data interface supporting candlestick and indicator integration.

Example Endpoints

Method
Path
Description
GET
/api/v1/markets
List all markets
GET
/api/v1/depth
Get order book depth
GET
/api/v1/ticker
Get ticker data
GET
/api/v1/trades
Get recent trades
GET
/api/v1/klines
Get candlestick data
POST
/api/v1/order
Place order (HMAC signed)
DELETE
/api/v1/order
Cancel order (HMAC signed)
GET
/api/v1/settlement/:txHash
Query settlement tx

WebSocket

JavaScriptExample
const ws = new WebSocket('wss://api.veraxon.xyz/ws');

ws.onopen = () => {
  ws.send(JSON.stringify({
    type: 'subscribe',
    channel: 'depth',
    market: 'DXS_USDC_PERP',
  }));
};

ws.onmessage = (e) => {
  const data = JSON.parse(e.data);
  // { bids: [...], asks: [...], seq: 12345 }
  console.log(data);
};

Get full API docs and integration materials

Complete endpoint references, HMAC authentication details, integration environments, and market maker onboarding materials are provided by the team based on your cooperation scenario.