CCXT
novadax

novadax implicit API

Every raw novadax endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.

Every endpoint in novadax's api definition is exposed as an implicit method — a thin, generated wrapper around the raw exchange endpoint. Use these for exchange-specific functionality the CCXT API does not cover.

These methods are available in every CCXT language — TypeScript, JavaScript, Python, PHP, C# and Go. Call them by the camelCase name shown in the tables below (e.g. publicGetCommonSymbol); the snake_case alias (public_get_common_symbol) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetCommonSymbol). Switch tabs for the call in each language:

const novadax = new ccxt.novadax ();
const response = await novadax.publicGetCommonSymbol (params);

Path parameters wrapped in {} (e.g. {pair}) are substituted from params; everything else in params is sent as the query string or request body. Cost is the rate-limiter weight of each call.

📚 Official novadax API documentation: doc.novadax.com

25 implicit endpoints across 2 access groups.

public

Base URL: https://api.novadax.com

MethodHTTPEndpointCost
publicGetCommonSymbolGETcommon/symbol1
publicGetCommonSymbolsGETcommon/symbols1
publicGetCommonTimestampGETcommon/timestamp1
publicGetMarketTickersGETmarket/tickers5
publicGetMarketTickerGETmarket/ticker1
publicGetMarketDepthGETmarket/depth1
publicGetMarketTradesGETmarket/trades5
publicGetMarketKlineHistoryGETmarket/kline/history5

private

Base URL: https://api.novadax.com

MethodHTTPEndpointCost
privateGetOrdersGetGETorders/get1
privateGetOrdersListGETorders/list10
privateGetOrdersFillGETorders/fill3
privateGetOrdersFillsGETorders/fills10
privateGetAccountGetBalanceGETaccount/getBalance1
privateGetAccountSubsGETaccount/subs1
privateGetAccountSubsBalanceGETaccount/subs/balance1
privateGetAccountSubsTransferRecordGETaccount/subs/transfer/record10
privateGetWalletQueryDepositWithdrawGETwallet/query/deposit-withdraw3
privatePostOrdersCreatePOSTorders/create5
privatePostOrdersBatchCreatePOSTorders/batch-create50
privatePostOrdersCancelPOSTorders/cancel1
privatePostOrdersBatchCancelPOSTorders/batch-cancel10
privatePostOrdersCancelBySymbolPOSTorders/cancel-by-symbol10
privatePostAccountSubsTransferPOSTaccount/subs/transfer5
privatePostWalletWithdrawCoinPOSTwallet/withdraw/coin3
privatePostAccountWithdrawCoinPOSTaccount/withdraw/coin3

On this page