CCXT
hibachi

hibachi implicit API

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

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

const hibachi = new ccxt.hibachi ();
const response = await hibachi.publicGetMarketExchangeInfo (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 hibachi API documentation: hibachi.xyz

22 implicit endpoints across 2 access groups.

public

Base URL: https://data-api.hibachi.xyz

MethodHTTPEndpointCost
publicGetMarketExchangeInfoGETmarket/exchange-info1
publicGetMarketDataTradesGETmarket/data/trades1
publicGetMarketDataPricesGETmarket/data/prices1
publicGetMarketDataStatsGETmarket/data/stats1
publicGetMarketDataKlinesGETmarket/data/klines1
publicGetMarketDataOrderbookGETmarket/data/orderbook1
publicGetMarketDataOpenInterestGETmarket/data/open-interest1
publicGetMarketDataFundingRatesGETmarket/data/funding-rates1
publicGetExchangeUtcTimestampGETexchange/utc-timestamp1

private

Base URL: https://api.hibachi.xyz

MethodHTTPEndpointCost
privateGetCapitalDepositInfoGETcapital/deposit-info1
privateGetCapitalHistoryGETcapital/history1
privateGetTradeAccountTradingHistoryGETtrade/account/trading_history1
privateGetTradeAccountInfoGETtrade/account/info1
privateGetTradeOrderGETtrade/order1
privateGetTradeAccountTradesGETtrade/account/trades1
privateGetTradeOrdersGETtrade/orders1
privatePutTradeOrderPUTtrade/order1
privateDeleteTradeOrderDELETEtrade/order1
privateDeleteTradeOrdersDELETEtrade/orders1
privatePostTradeOrderPOSTtrade/order1
privatePostTradeOrdersPOSTtrade/orders1
privatePostCapitalWithdrawPOSTcapital/withdraw1

On this page