CCXT
ndax

ndax implicit API

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

Every endpoint in ndax'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. publicGetActivate2FA); the snake_case alias (public_get_activate2fa) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetActivate2FA). Switch tabs for the call in each language:

const ndax = new ccxt.ndax ();
const response = await ndax.publicGetActivate2FA (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 ndax API documentation: apidoc.ndax.io

93 implicit endpoints across 2 access groups.

public

Base URL: https://api.ndax.io:8443/AP

MethodHTTPEndpointCost
publicGetActivate2FAGETActivate2FA1
publicGetAuthenticate2FAGETAuthenticate2FA1
publicGetAuthenticateUserGETAuthenticateUser1
publicGetGetL2SnapshotGETGetL2Snapshot1
publicGetGetLevel1GETGetLevel11
publicGetGetValidate2FARequiredEndpointsGETGetValidate2FARequiredEndpoints1
publicGetLogOutGETLogOut1
publicGetGetTickerHistoryGETGetTickerHistory1
publicGetGetProductGETGetProduct1
publicGetGetProductsGETGetProducts1
publicGetGetInstrumentGETGetInstrument1
publicGetGetInstrumentsGETGetInstruments1
publicGetPingGETPing1
publicGetTradesGETtrades1
publicGetGetLastTradesGETGetLastTrades1
publicGetSubscribeLevel1GETSubscribeLevel11
publicGetSubscribeLevel2GETSubscribeLevel21
publicGetSubscribeTickerGETSubscribeTicker1
publicGetSubscribeTradesGETSubscribeTrades1
publicGetSubscribeBlockTradesGETSubscribeBlockTrades1
publicGetUnsubscribeBlockTradesGETUnsubscribeBlockTrades1
publicGetUnsubscribeLevel1GETUnsubscribeLevel11
publicGetUnsubscribeLevel2GETUnsubscribeLevel21
publicGetUnsubscribeTickerGETUnsubscribeTicker1
publicGetUnsubscribeTradesGETUnsubscribeTrades1
publicGetAuthenticateGETAuthenticate1

private

Base URL: https://api.ndax.io:8443/AP

MethodHTTPEndpointCost
privateGetGetUserAccountInfosGETGetUserAccountInfos1
privateGetGetUserAccountsGETGetUserAccounts1
privateGetGetUserAffiliateCountGETGetUserAffiliateCount1
privateGetGetUserAffiliateTagGETGetUserAffiliateTag1
privateGetGetUserConfigGETGetUserConfig1
privateGetGetAllUnredactedUserConfigsForUserGETGetAllUnredactedUserConfigsForUser1
privateGetGetUnredactedUserConfigByKeyGETGetUnredactedUserConfigByKey1
privateGetGetUserDevicesGETGetUserDevices1
privateGetGetUserReportTicketsGETGetUserReportTickets1
privateGetGetUserReportWriterResultRecordsGETGetUserReportWriterResultRecords1
privateGetGetAccountInfoGETGetAccountInfo1
privateGetGetAccountPositionsGETGetAccountPositions1
privateGetGetAllAccountConfigsGETGetAllAccountConfigs1
privateGetGetTreasuryProductsForAccountGETGetTreasuryProductsForAccount1
privateGetGetAccountTradesGETGetAccountTrades1
privateGetGetAccountTransactionsGETGetAccountTransactions1
privateGetGetOpenTradeReportsGETGetOpenTradeReports1
privateGetGetAllOpenTradeReportsGETGetAllOpenTradeReports1
privateGetGetTradesHistoryGETGetTradesHistory1
privateGetGetOpenOrdersGETGetOpenOrders1
privateGetGetOpenQuotesGETGetOpenQuotes1
privateGetGetOrderFeeGETGetOrderFee1
privateGetGetOrderHistoryGETGetOrderHistory1
privateGetGetOrdersHistoryGETGetOrdersHistory1
privateGetGetOrderStatusGETGetOrderStatus1
privateGetGetOmsFeeTiersGETGetOmsFeeTiers1
privateGetGetAccountDepositTransactionsGETGetAccountDepositTransactions1
privateGetGetAccountWithdrawTransactionsGETGetAccountWithdrawTransactions1
privateGetGetAllDepositRequestInfoTemplatesGETGetAllDepositRequestInfoTemplates1
privateGetGetDepositInfoGETGetDepositInfo1
privateGetGetDepositRequestInfoTemplateGETGetDepositRequestInfoTemplate1
privateGetGetDepositsGETGetDeposits1
privateGetGetDepositTicketGETGetDepositTicket1
privateGetGetDepositTicketsGETGetDepositTickets1
privateGetGetOMSWithdrawFeesGETGetOMSWithdrawFees1
privateGetGetWithdrawFeeGETGetWithdrawFee1
privateGetGetWithdrawsGETGetWithdraws1
privateGetGetWithdrawTemplateGETGetWithdrawTemplate1
privateGetGetWithdrawTemplateTypesGETGetWithdrawTemplateTypes1
privateGetGetWithdrawTicketGETGetWithdrawTicket1
privateGetGetWithdrawTicketsGETGetWithdrawTickets1
privatePostAddUserAffiliateTagPOSTAddUserAffiliateTag1
privatePostCancelUserReportPOSTCancelUserReport1
privatePostRegisterNewDevicePOSTRegisterNewDevice1
privatePostSubscribeAccountEventsPOSTSubscribeAccountEvents1
privatePostUpdateUserAffiliateTagPOSTUpdateUserAffiliateTag1
privatePostGenerateTradeActivityReportPOSTGenerateTradeActivityReport1
privatePostGenerateTransactionActivityReportPOSTGenerateTransactionActivityReport1
privatePostGenerateTreasuryActivityReportPOSTGenerateTreasuryActivityReport1
privatePostScheduleTradeActivityReportPOSTScheduleTradeActivityReport1
privatePostScheduleTransactionActivityReportPOSTScheduleTransactionActivityReport1
privatePostScheduleTreasuryActivityReportPOSTScheduleTreasuryActivityReport1
privatePostCancelAllOrdersPOSTCancelAllOrders1
privatePostCancelOrderPOSTCancelOrder1
privatePostCancelQuotePOSTCancelQuote1
privatePostCancelReplaceOrderPOSTCancelReplaceOrder1
privatePostCreateQuotePOSTCreateQuote1
privatePostModifyOrderPOSTModifyOrder1
privatePostSendOrderPOSTSendOrder1
privatePostSubmitBlockTradePOSTSubmitBlockTrade1
privatePostUpdateQuotePOSTUpdateQuote1
privatePostCancelWithdrawPOSTCancelWithdraw1
privatePostCreateDepositTicketPOSTCreateDepositTicket1
privatePostCreateWithdrawTicketPOSTCreateWithdrawTicket1
privatePostSubmitDepositTicketCommentPOSTSubmitDepositTicketComment1
privatePostSubmitWithdrawTicketCommentPOSTSubmitWithdrawTicketComment1
privatePostGetOrderHistoryByOrderIdPOSTGetOrderHistoryByOrderId1

On this page