Back to Ccxt

Hollaex

wiki/exchanges-implicit/hollaex.md

4.5.643.3 KB
Original Source

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:

<!-- tabs:start -->

JavaScript

javascript
const hollaex = new ccxt.hollaex ();
const response = await hollaex.publicGetHealth (params);

TypeScript

typescript
import ccxt from 'ccxt';
const hollaex = new ccxt.hollaex ();
const response = await hollaex.publicGetHealth (params);

Python

python
import ccxt
hollaex = ccxt.hollaex()
response = hollaex.public_get_health(params)

PHP

php
$hollaex = new \ccxt\hollaex();
$response = $hollaex->public_get_health($params);

C#

csharp
using ccxt;
var hollaex = new Hollaex();
var response = await hollaex.publicGetHealth(parameters);

Go

go
hollaex := ccxt.NewHollaex(nil)
response := <-hollaex.PublicGetHealth(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 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