CCXT
bitso

bitso implicit API

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

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

const bitso = new ccxt.bitso ();
const response = await bitso.publicGetAvailableBooks (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 bitso API documentation: bitso.com

39 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicGetAvailableBooksGETavailable_books
publicGetTickerGETticker
publicGetOrderBookGETorder_book
publicGetTradesGETtrades
publicGetOhlcGETohlc

private

MethodHTTPEndpointCost
privateGetAccountStatusGETaccount_status
privateGetBalanceGETbalance
privateGetFeesGETfees
privateGetFundingsGETfundings
privateGetFundingsFidGETfundings/{fid}
privateGetFundingDestinationGETfunding_destination
privateGetKycDocumentsGETkyc_documents
privateGetLedgerGETledger
privateGetLedgerTradesGETledger/trades
privateGetLedgerFeesGETledger/fees
privateGetLedgerFundingsGETledger/fundings
privateGetLedgerWithdrawalsGETledger/withdrawals
privateGetMxBankCodesGETmx_bank_codes
privateGetOpenOrdersGETopen_orders
privateGetOrderTradesOidGETorder_trades/{oid}
privateGetOrdersOidGETorders/{oid}
privateGetUserTradesGETuser_trades
privateGetUserTradesTidGETuser_trades/{tid}
privateGetWithdrawalsGETwithdrawals/
privateGetWithdrawalsWidGETwithdrawals/{wid}
privatePostBitcoinWithdrawalPOSTbitcoin_withdrawal
privatePostDebitCardWithdrawalPOSTdebit_card_withdrawal
privatePostEtherWithdrawalPOSTether_withdrawal
privatePostOrdersPOSTorders
privatePostPhoneNumberPOSTphone_number
privatePostPhoneVerificationPOSTphone_verification
privatePostPhoneWithdrawalPOSTphone_withdrawal
privatePostSpeiWithdrawalPOSTspei_withdrawal
privatePostRippleWithdrawalPOSTripple_withdrawal
privatePostBcashWithdrawalPOSTbcash_withdrawal
privatePostLitecoinWithdrawalPOSTlitecoin_withdrawal
privateDeleteOrdersDELETEorders
privateDeleteOrdersOidDELETEorders/{oid}
privateDeleteOrdersAllDELETEorders/all

On this page