CCXT
hollaex

hollaex implicit API

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

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

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

29 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicGetHealthGEThealth1
publicGetConstantsGETconstants1
publicGetKitGETkit1
publicGetTiersGETtiers1
publicGetTickerGETticker1
publicGetTickersGETtickers1
publicGetOrderbookGETorderbook1
publicGetOrderbooksGETorderbooks1
publicGetTradesGETtrades1
publicGetChartGETchart1
publicGetChartsGETcharts1
publicGetMinichartsGETminicharts1
publicGetOraclePricesGEToracle/prices1
publicGetQuickTradeGETquick-trade1
publicGetUdfConfigGETudf/config1
publicGetUdfHistoryGETudf/history1
publicGetUdfSymbolsGETudf/symbols1

private

MethodHTTPEndpointCost
privateGetUserGETuser1
privateGetUserBalanceGETuser/balance1
privateGetUserDepositsGETuser/deposits1
privateGetUserWithdrawalsGETuser/withdrawals1
privateGetUserWithdrawalFeeGETuser/withdrawal/fee1
privateGetUserTradesGETuser/trades1
privateGetOrdersGETorders1
privateGetOrderGETorder1
privatePostUserWithdrawalPOSTuser/withdrawal1
privatePostOrderPOSTorder1
privateDeleteOrderAllDELETEorder/all1
privateDeleteOrderDELETEorder1

On this page