CCXT
tokocrypto

tokocrypto implicit API

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

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

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

33 implicit endpoints across 3 access groups.

binance

MethodHTTPEndpointCost
binanceGetPingGETping1
binanceGetTimeGETtime1
binanceGetDepthGETdepth1
binanceGetTradesGETtrades1
binanceGetAggTradesGETaggTrades1
binanceGetHistoricalTradesGEThistoricalTrades5
binanceGetKlinesGETklines1
binanceGetTicker24hrGETticker/24hr1
binanceGetTickerPriceGETticker/price1
binanceGetTickerBookTickerGETticker/bookTicker1
binanceGetExchangeInfoGETexchangeInfo10
binancePutUserDataStreamPUTuserDataStream1
binancePostUserDataStreamPOSTuserDataStream1
binanceDeleteUserDataStreamDELETEuserDataStream1

public

MethodHTTPEndpointCost
publicGetOpenV1CommonTimeGETopen/v1/common/time1
publicGetOpenV1CommonSymbolsGETopen/v1/common/symbols1
publicGetOpenV1MarketDepthGETopen/v1/market/depth1
publicGetOpenV1MarketTradesGETopen/v1/market/trades1
publicGetOpenV1MarketAggTradesGETopen/v1/market/agg-trades1
publicGetOpenV1MarketKlinesGETopen/v1/market/klines1

private

MethodHTTPEndpointCost
privateGetOpenV1OrdersDetailGETopen/v1/orders/detail1
privateGetOpenV1OrdersGETopen/v1/orders1
privateGetOpenV1AccountSpotGETopen/v1/account/spot1
privateGetOpenV1AccountSpotAssetGETopen/v1/account/spot/asset1
privateGetOpenV1OrdersTradesGETopen/v1/orders/trades1
privateGetOpenV1WithdrawsGETopen/v1/withdraws1
privateGetOpenV1DepositsGETopen/v1/deposits1
privateGetOpenV1DepositsAddressGETopen/v1/deposits/address1
privatePostOpenV1OrdersPOSTopen/v1/orders1
privatePostOpenV1OrdersCancelPOSTopen/v1/orders/cancel1
privatePostOpenV1OrdersOcoPOSTopen/v1/orders/oco1
privatePostOpenV1WithdrawsPOSTopen/v1/withdraws1
privatePostOpenV1UserDataStreamPOSTopen/v1/user-data-stream1

On this page