Guide
Open API

NODITRA's NODIT API gives algorithmic traders and developers programmatic access to markets, order management, and real-time data streams.

Overview

The NODITRA Open API is built and maintained by our NODIT division (led by Lee Min-joon, Head of Blockchain & API Infrastructure). It provides RESTful endpoints and WebSocket streams for all exchange functionality.

Base URL (REST): https://api.noditra.com/v3/

WebSocket: wss://stream.noditra.com/v3/ws/

All API requests must include an Authorization: Bearer <api_key> header. API keys are generated in Account Settings β†’ API Management.

Key Endpoints

GET/v3/market/ticker/{symbol}

Returns the latest ticker data including price, 24H change, volume, and best bid/ask for a given symbol.

GET/v3/market/orderbook/{symbol}

Order book snapshot. Supports depth parameter (max 200 levels). Results cached for 200ms.

GET/v3/market/candles/{symbol}

Historical OHLCV candlestick data. Intervals: 1s, 1m, 5m, 15m, 30m, 1h, 4h, D, W, M. Max 1000 candles per request.

POST/v3/order/place

Submit a new order. Supports limit, market, stop-limit types. Requires account:write scope on API key.

POST/v3/order/{id}/cancel

Cancel an open order by ID. Returns the updated order state.

GET/v3/account/balance

Returns all asset balances for the authenticated account (available + locked).

WSstream.noditra.com/v3/ws/{symbol}@trade

Real-time trade stream. Pushes every matched trade as it occurs in the engine.

WSstream.noditra.com/v3/ws/{symbol}@depth

Incremental order book depth updates at 100ms intervals.

Rate Limits

Exceeding rate limits returns HTTP 429. Repeated violations may result in temporary API key suspension. See the Open API Terms of Use for full policy.

Getting Started

1. Log in to NODITRA and go to Account Settings β†’ API Management.

2. Create a new API key. Assign only the scopes you need (read-only vs. trading).

3. Whitelist your IP addresses for production keys.

4. Use the sandbox environment (api-sandbox.noditra.com) for testing before going live.

For detailed SDK documentation and code examples (Python, Node.js, Go, Java), visit the NODIT developer portal: NODIT β†’