bit2c implicit API
Every raw bit2c endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.
Every endpoint in bit2c'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. publicGetExchangesPairTicker); the snake_case alias (public_get_exchanges_pair_ticker) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetExchangesPairTicker). Switch tabs for the call in each language:
const bit2c = new ccxt.bit2c ();
const response = await bit2c.publicGetExchangesPairTicker (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 bit2c API documentation: bit2c.co.il · github.com
23 implicit endpoints across 2 access groups.
public
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
publicGetExchangesPairTicker | GET | Exchanges/{pair}/Ticker | |
publicGetExchangesPairOrderbook | GET | Exchanges/{pair}/orderbook | |
publicGetExchangesPairTrades | GET | Exchanges/{pair}/trades | |
publicGetExchangesPairLasttrades | GET | Exchanges/{pair}/lasttrades |
private
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
privatePostMerchantCreateCheckout | POST | Merchant/CreateCheckout | |
privatePostFundsAddCoinFundsRequest | POST | Funds/AddCoinFundsRequest | |
privatePostOrderAddFund | POST | Order/AddFund | |
privatePostOrderAddOrder | POST | Order/AddOrder | |
privatePostOrderGetById | POST | Order/GetById | |
privatePostOrderAddOrderMarketPriceBuy | POST | Order/AddOrderMarketPriceBuy | |
privatePostOrderAddOrderMarketPriceSell | POST | Order/AddOrderMarketPriceSell | |
privatePostOrderCancelOrder | POST | Order/CancelOrder | |
privatePostOrderAddCoinFundsRequest | POST | Order/AddCoinFundsRequest | |
privatePostOrderAddStopOrder | POST | Order/AddStopOrder | |
privatePostPaymentGetMyId | POST | Payment/GetMyId | |
privatePostPaymentSend | POST | Payment/Send | |
privatePostPaymentPay | POST | Payment/Pay | |
privateGetAccountBalance | GET | Account/Balance | |
privateGetAccountBalanceV2 | GET | Account/Balance/v2 | |
privateGetOrderMyOrders | GET | Order/MyOrders | |
privateGetOrderGetById | GET | Order/GetById | |
privateGetOrderAccountHistory | GET | Order/AccountHistory | |
privateGetOrderOrderHistory | GET | Order/OrderHistory |