API Documentation

Integrate with RizenX programmatically. Our REST and WebSocket APIs provide real-time market data, trading, and account management capabilities.

Base URL: https://api.rizenx.in/v1 WebSocket: wss://ws.rizenx.in
GET
/api/v1/markets

List all trading pairs and market info

GET
/api/v1/ticker/{symbol}

Get 24h ticker stats for a pair

GET
/api/v1/orderbook/{symbol}

Get order book depth for a pair

GET
/api/v1/trades/{symbol}

Get recent trades for a pair

GET
/api/v1/klines/{symbol}

Get candlestick/OHLCV data

POST
/api/v1/order

Place a new order (auth required)

DELETE
/api/v1/order/{orderId}

Cancel an existing order

GET
/api/v1/account/balance

Get wallet balances (auth required)

GET
/api/v1/account/orders

Get open and historical orders

GET
/api/v1/account/trades

Get personal trade history

Example Request

curl -X GET "https://api.rizenx.in/v1/ticker/BTC_INR" \
  -H "Accept: application/json"

# Response
{
  "symbol": "BTC_INR",
  "lastPrice": "5847320.00",
  "priceChange24h": "-2.15",
  "high24h": "5920000.00",
  "low24h": "5780000.00",
  "volume24h": "128.45",
  "quoteVolume24h": "751234560.00"
}

Official SDKs

Client libraries for popular programming languages.

Python (Coming Soon)Node.js (Coming Soon)Go (Coming Soon)Java (Coming Soon)
en