Back to Ccxt

Indodax

wiki/exchanges-implicit/indodax.md

4.5.643.2 KB
Original Source

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:

<!-- tabs:start -->

JavaScript

javascript
const indodax = new ccxt.indodax ();
const response = await indodax.publicGetApiServerTime (params);

TypeScript

typescript
import ccxt from 'ccxt';
const indodax = new ccxt.indodax ();
const response = await indodax.publicGetApiServerTime (params);

Python

python
import ccxt
indodax = ccxt.indodax()
response = indodax.public_get_api_server_time(params)

PHP

php
$indodax = new \ccxt\indodax();
$response = $indodax->public_get_api_server_time($params);

C#

csharp
using ccxt;
var indodax = new Indodax();
var response = await indodax.publicGetApiServerTime(parameters);

Go

go
indodax := ccxt.NewIndodax(nil)
response := <-indodax.PublicGetApiServerTime(params)
<!-- tabs:end -->

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