wiki/exchanges-implicit/hibachi.md
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);
import ccxt from 'ccxt';
const hibachi = new ccxt.hibachi ();
const response = await hibachi.publicGetMarketExchangeInfo (params);
import ccxt
hibachi = ccxt.hibachi()
response = hibachi.public_get_market_exchange_info(params)
$hibachi = new \ccxt\hibachi();
$response = $hibachi->public_get_market_exchange_info($params);
using ccxt;
var hibachi = new Hibachi();
var response = await hibachi.publicGetMarketExchangeInfo(parameters);
hibachi := ccxt.NewHibachi(nil)
response := <-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
28 implicit endpoints across 2 access groups.
Base URL: https://data-api.hibachi.xyz
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
publicGetMarketExchangeInfo | GET | market/exchange-info | 1 |
publicGetMarketInventory | GET | market/inventory | 1 |
publicGetMarketDataPrices | GET | market/data/prices | 1 |
publicGetMarketDataStats | GET | market/data/stats | 1 |
publicGetMarketDataTrades | GET | market/data/trades | 1 |
publicGetMarketDataKlines | GET | market/data/klines | 1 |
publicGetMarketDataOpenInterest | GET | market/data/open-interest | 1 |
publicGetMarketDataOrderbook | GET | market/data/orderbook | 1 |
publicGetMarketDataFundingRates | GET | market/data/funding-rates | 1 |
publicGetExchangeUtcTimestamp | GET | exchange/utc-timestamp | 1 |
Base URL: https://api.hibachi.xyz
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
privateGetCapitalBalance | GET | capital/balance | 1 |
privateGetCapitalHistory | GET | capital/history | 1 |
privateGetCapitalDepositInfo | GET | capital/deposit-info | 1 |
privateGetTradeAccountInfo | GET | trade/account/info | 1 |
privateGetTradeAccountTrades | GET | trade/account/trades | 1 |
privateGetTradeAccountTradingHistory | GET | trade/account/trading_history | 1 |
privateGetTradeAccountSettlementsHistory | GET | trade/account/settlements_history | 1 |
privateGetTradeOrders | GET | trade/orders | 1 |
privateGetTradeOrder | GET | trade/order | 1 |
privateGetTradeOrdersHistory | GET | trade/orders/history | 1 |
privatePutTradeOrder | PUT | trade/order | 1 |
privateDeleteTradeOrder | DELETE | trade/order | 1 |
privateDeleteTradeOrders | DELETE | trade/orders | 1 |
privatePostTradeOrder | POST | trade/order | 1 |
privatePostTradeOrders | POST | trade/orders | 1 |
privatePostCapitalWithdraw | POST | capital/withdraw | 1 |
privatePostCapitalTransfer | POST | capital/transfer | 1 |
privatePostTradeAccountLeverage | POST | trade/account/leverage | 1 |