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',
})
});