CCXT
indodax

indodax implicit API

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

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

const indodax = new ccxt.indodax ();
const response = await indodax.publicGetApiServerTime (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 indodax API documentation: github.com

22 implicit endpoints across 2 access groups.

public

Base URL: https://indodax.com

MethodHTTPEndpointCost
publicGetApiServerTimeGETapi/server_time5
publicGetApiPairsGETapi/pairs5
publicGetApiPriceIncrementsGETapi/price_increments5
publicGetApiSummariesGETapi/summaries5
publicGetApiTickerPairGETapi/ticker/{pair}5
publicGetApiTickerAllGETapi/ticker_all5
publicGetApiTradesPairGETapi/trades/{pair}5
publicGetApiDepthPairGETapi/depth/{pair}5
publicGetTradingviewHistoryV2GETtradingview/history_v25

private

Base URL: https://indodax.com/tapi

MethodHTTPEndpointCost
privatePostGetInfoPOSTgetInfo4
privatePostTransHistoryPOSTtransHistory4
privatePostTradePOSTtrade1
privatePostTradeHistoryPOSTtradeHistory4
privatePostOpenOrdersPOSTopenOrders4
privatePostOrderHistoryPOSTorderHistory4
privatePostGetOrderPOSTgetOrder4
privatePostCancelOrderPOSTcancelOrder4
privatePostWithdrawFeePOSTwithdrawFee4
privatePostWithdrawCoinPOSTwithdrawCoin4
privatePostListDownlinePOSTlistDownline4
privatePostCheckDownlinePOSTcheckDownline4
privatePostCreateVoucherPOSTcreateVoucher4

On this page