Cexius API
API Documentation
Quick reference for public and private endpoints covering trading, balances, deposits, and withdrawals.
Base URL
https://dev.cexius.io/api/v2/dev
Public endpoints
Public API
No authentication required. Ideal for tickers, market data, orderbook, and public markets.
GET/public/markets/overview
Markets + tickers + currencies overview
GET/public/markets
Market list with trading rules
GET/public/markets/tickers
Latest tickers snapshot
GET/public/markets/{market}/orderbook?limit=1
Top of book orderbook
GET/public/markets/{market}/trades?limit=50&page=1
Public trades
GET/public/currencies
Currencies + status flags
Private endpoints
Private API
Requires authentication via API token or session cookie.
GET/private/balances
Account balances
POST/private/trading/order
Create limit/market order
POST/private/trading/orders/cancel-all
Cancel all open orders
GET/private/deposit/networks?currency_id=USDT
Deposit networks + limits
POST/private/deposit/address
Generate deposit address
GET/private/deposit/pending
Pending deposits
GET/private/history/tx?type=deposit&page=1&limit=50
Deposit history
GET/private/withdraw/networks?currency_id=USDT
Withdraw networks + fees
POST/private/withdraw
Create withdrawal
GET/private/withdrawal/level
Current withdrawal level
GET/private/history/tx?type=withdrawal&page=1&limit=50
Withdrawal history
Quick start (public)
curl -sS "https://dev.cexius.io/api/v2/dev/public/markets/overview" | jq
Quick start (private)
curl -sS "https://dev.cexius.io/api/v2/dev/private/balances" \ -H "Authorization: Bearer <API_TOKEN>"
Generate API tokens in Settings → API Keys.
WebSocket
Real-time stream (WS)
Use WebSocket for real-time market updates and private events (if enabled).
wss://dev.cexius.io/ws
