Back to Ccxt

Bitso

wiki/exchanges-implicit/bitso.md

4.5.734.1 KB
Original Source

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#, Go and Java. 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:

<!-- tabs:start -->

JavaScript

javascript
const bitso = new ccxt.bitso ();
const response = await bitso.publicGetAvailableBooks (params);

TypeScript

typescript
import ccxt from 'ccxt';
const bitso = new ccxt.bitso ();
const response = await bitso.publicGetAvailableBooks (params);

Python

python
import ccxt
bitso = ccxt.bitso()
response = bitso.public_get_available_books(params)

PHP

php
$bitso = new \ccxt\bitso();
$response = $bitso->public_get_available_books($params);

C#

csharp
using ccxt;
var bitso = new Bitso();
var response = await bitso.publicGetAvailableBooks(parameters);

Go

go
bitso := ccxt.NewBitso(nil)
response := <-bitso.PublicGetAvailableBooks(params)
<!-- tabs:end -->

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

40 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicGetAvailableBooksGETavailable_books1
publicGetCataloguesGETcatalogues1
publicGetTickerGETticker1
publicGetOrderBookGETorder_book1
publicGetTradesGETtrades1
publicGetOhlcGETohlc1

private

MethodHTTPEndpointCost
privateGetAccountStatusGETaccount_status1
privateGetBalanceGETbalance1
privateGetFeesGETfees1
privateGetFundingsGETfundings1
privateGetFundingsFidGETfundings/{fid}1
privateGetFundingDestinationGETfunding_destination1
privateGetKycDocumentsGETkyc_documents1
privateGetLedgerGETledger1
privateGetLedgerTradesGETledger/trades1
privateGetLedgerFeesGETledger/fees1
privateGetLedgerFundingsGETledger/fundings1
privateGetLedgerWithdrawalsGETledger/withdrawals1
privateGetMxBankCodesGETmx_bank_codes1
privateGetOpenOrdersGETopen_orders1
privateGetOrderTradesOidGETorder_trades/{oid}1
privateGetOrdersOidGETorders/{oid}1
privateGetUserTradesGETuser_trades1
privateGetUserTradesTidGETuser_trades/{tid}1
privateGetWithdrawalsGETwithdrawals/1
privateGetWithdrawalsWidGETwithdrawals/{wid}1
privatePostBitcoinWithdrawalPOSTbitcoin_withdrawal1
privatePostDebitCardWithdrawalPOSTdebit_card_withdrawal1
privatePostEtherWithdrawalPOSTether_withdrawal1
privatePostOrdersPOSTorders1
privatePostPhoneNumberPOSTphone_number1
privatePostPhoneVerificationPOSTphone_verification1
privatePostPhoneWithdrawalPOSTphone_withdrawal1
privatePostSpeiWithdrawalPOSTspei_withdrawal1
privatePostRippleWithdrawalPOSTripple_withdrawal1
privatePostBcashWithdrawalPOSTbcash_withdrawal1
privatePostLitecoinWithdrawalPOSTlitecoin_withdrawal1
privateDeleteOrdersDELETEorders1
privateDeleteOrdersOidDELETEorders/{oid}1
privateDeleteOrdersAllDELETEorders/all1