CCXT
hashkey

hashkey implicit API

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

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

const hashkey = new ccxt.hashkey ();
const response = await hashkey.publicGetApiV1ExchangeInfo (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 hashkey API documentation: hashkeyglobal-apidoc.readme.io

63 implicit endpoints across 2 access groups.

public

Base URL: https://api-glb.hashkey.com

MethodHTTPEndpointCost
publicGetApiV1ExchangeInfoGETapi/v1/exchangeInfo5
publicGetQuoteV1DepthGETquote/v1/depth1
publicGetQuoteV1TradesGETquote/v1/trades1
publicGetQuoteV1KlinesGETquote/v1/klines1
publicGetQuoteV1Ticker24hrGETquote/v1/ticker/24hr1
publicGetQuoteV1TickerPriceGETquote/v1/ticker/price1
publicGetQuoteV1TickerBookTickerGETquote/v1/ticker/bookTicker1
publicGetQuoteV1DepthMergedGETquote/v1/depth/merged1
publicGetQuoteV1MarkPriceGETquote/v1/markPrice1
publicGetQuoteV1IndexGETquote/v1/index1
publicGetApiV1FuturesFundingRateGETapi/v1/futures/fundingRate1
publicGetApiV1FuturesHistoryFundingRateGETapi/v1/futures/historyFundingRate1
publicGetApiV1PingGETapi/v1/ping1
publicGetApiV1TimeGETapi/v1/time1

private

Base URL: https://api-glb.hashkey.com

MethodHTTPEndpointCost
privateGetApiV1SpotOrderGETapi/v1/spot/order1
privateGetApiV1SpotOpenOrdersGETapi/v1/spot/openOrders1
privateGetApiV1SpotTradeOrdersGETapi/v1/spot/tradeOrders5
privateGetApiV1FuturesLeverageGETapi/v1/futures/leverage1
privateGetApiV1FuturesOrderGETapi/v1/futures/order1
privateGetApiV1FuturesOpenOrdersGETapi/v1/futures/openOrders1
privateGetApiV1FuturesUserTradesGETapi/v1/futures/userTrades1
privateGetApiV1FuturesPositionsGETapi/v1/futures/positions1
privateGetApiV1FuturesHistoryOrdersGETapi/v1/futures/historyOrders1
privateGetApiV1FuturesBalanceGETapi/v1/futures/balance1
privateGetApiV1FuturesLiquidationAssignStatusGETapi/v1/futures/liquidationAssignStatus1
privateGetApiV1FuturesRiskLimitGETapi/v1/futures/riskLimit1
privateGetApiV1FuturesCommissionRateGETapi/v1/futures/commissionRate1
privateGetApiV1FuturesGetBestOrderGETapi/v1/futures/getBestOrder1
privateGetApiV1AccountVipInfoGETapi/v1/account/vipInfo1
privateGetApiV1AccountGETapi/v1/account1
privateGetApiV1AccountTradesGETapi/v1/account/trades5
privateGetApiV1AccountTypeGETapi/v1/account/type5
privateGetApiV1AccountCheckApiKeyGETapi/v1/account/checkApiKey1
privateGetApiV1AccountBalanceFlowGETapi/v1/account/balanceFlow5
privateGetApiV1SpotSubAccountOpenOrdersGETapi/v1/spot/subAccount/openOrders1
privateGetApiV1SpotSubAccountTradeOrdersGETapi/v1/spot/subAccount/tradeOrders1
privateGetApiV1SubAccountTradesGETapi/v1/subAccount/trades1
privateGetApiV1FuturesSubAccountOpenOrdersGETapi/v1/futures/subAccount/openOrders1
privateGetApiV1FuturesSubAccountHistoryOrdersGETapi/v1/futures/subAccount/historyOrders1
privateGetApiV1FuturesSubAccountUserTradesGETapi/v1/futures/subAccount/userTrades1
privateGetApiV1AccountDepositAddressGETapi/v1/account/deposit/address1
privateGetApiV1AccountDepositOrdersGETapi/v1/account/depositOrders1
privateGetApiV1AccountWithdrawOrdersGETapi/v1/account/withdrawOrders1
privatePostApiV1UserDataStreamPOSTapi/v1/userDataStream1
privatePostApiV1SpotOrderTestPOSTapi/v1/spot/orderTest1
privatePostApiV1SpotOrderPOSTapi/v1/spot/order1
privatePostApiV11SpotOrderPOSTapi/v1.1/spot/order1
privatePostApiV1SpotBatchOrdersPOSTapi/v1/spot/batchOrders5
privatePostApiV1FuturesLeveragePOSTapi/v1/futures/leverage1
privatePostApiV1FuturesOrderPOSTapi/v1/futures/order1
privatePostApiV1FuturesPositionTradingStopPOSTapi/v1/futures/position/trading-stop3
privatePostApiV1FuturesBatchOrdersPOSTapi/v1/futures/batchOrders5
privatePostApiV1AccountAssetTransferPOSTapi/v1/account/assetTransfer1
privatePostApiV1AccountAuthAddressPOSTapi/v1/account/authAddress1
privatePostApiV1AccountWithdrawPOSTapi/v1/account/withdraw1
privatePutApiV1UserDataStreamPUTapi/v1/userDataStream1
privateDeleteApiV1SpotOrderDELETEapi/v1/spot/order1
privateDeleteApiV1SpotOpenOrdersDELETEapi/v1/spot/openOrders5
privateDeleteApiV1SpotCancelOrderByIdsDELETEapi/v1/spot/cancelOrderByIds5
privateDeleteApiV1FuturesOrderDELETEapi/v1/futures/order1
privateDeleteApiV1FuturesBatchOrdersDELETEapi/v1/futures/batchOrders1
privateDeleteApiV1FuturesCancelOrderByIdsDELETEapi/v1/futures/cancelOrderByIds1
privateDeleteApiV1UserDataStreamDELETEapi/v1/userDataStream1

On this page