API v1 is live

Build on ZDEX

Programmatic access to the ZDEX perpetual futures DEX. Trade, stream market data, and manage your account with a simple, powerful API.

โšก

REST API

Place orders, manage positions, and query account data with simple HTTP requests.

๐Ÿ”Œ

WebSocket

Stream real-time orderbook, trades, ticker, and account updates.

๐Ÿ”‘

API Keys

HMAC-SHA256 signed requests with scoped permissions and IP whitelisting.

๐Ÿ“Š

Market Data

Public endpoints for tickers, orderbook depth, recent trades, and klines.

Quick Example
// Place a market order
const res = await fetch('https://api.zdex.world/v1/orders', {
  method: 'POST',
  headers: {
    'X-API-KEY': apiKey,
    'Content-Type': 'application/json',
  }
  body: JSON.stringify({
    symbol: 'BTCUSDT',
    side: 'BUY',
    type: 'MARKET',
    quantity: '0.01',
  })
});
ZDEX Perpetual DEX ยท Built for traders, by traders