NODITRA's NODIT API gives algorithmic traders and developers programmatic access to markets, order management, and real-time data streams.
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.
Returns the latest ticker data including price, 24H change, volume, and best bid/ask for a given symbol.
Order book snapshot. Supports depth parameter (max 200 levels). Results cached for 200ms.
Historical OHLCV candlestick data. Intervals: 1s, 1m, 5m, 15m, 30m, 1h, 4h, D, W, M. Max 1000 candles per request.
Submit a new order. Supports limit, market, stop-limit types. Requires account:write scope on API key.
Cancel an open order by ID. Returns the updated order state.
Returns all asset balances for the authenticated account (available + locked).
Real-time trade stream. Pushes every matched trade as it occurs in the engine.
Incremental order book depth updates at 100ms intervals.
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.
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 β