Back to Ccxt

Bitso

wiki/exchanges-implicit/bitso.md

4.5.644.0 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# 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:

<!-- 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

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