CCXT
bitvavo

bitvavo implicit API

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

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

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

41 implicit endpoints across 2 access groups.

public

Base URL: https://api.bitvavo.com

MethodHTTPEndpointCost
publicGetMarketBookGET{market}/book1
publicGetReportMarketBookGETreport/{market}/book1
publicGetMarketTradesGET{market}/trades5
publicGetReportMarketTradesGETreport/{market}/trades5
publicGetTickerPriceGETticker/price1
publicGetTickerBookGETticker/book1
publicGetMarketCandlesGET{market}/candles1
publicGetTicker24hGETticker/24h1
publicGetTimeGETtime1
publicGetMarketsGETmarkets1
publicGetAssetsGETassets1

private

Base URL: https://api.bitvavo.com

MethodHTTPEndpointCost
privateGetOrderGETorder1
privateGetOrdersOpenGETordersOpen5
privateGetTradesGETtrades5
privateGetOrdersGETorders5
privateGetDepositGETdeposit1
privateGetDepositHistoryGETdepositHistory5
privateGetWithdrawalHistoryGETwithdrawalHistory5
privateGetAccountGETaccount1
privateGetBalanceGETbalance5
privateGetStakingBalanceGETstakingBalance1
privateGetAccountFeesGETaccount/fees1
privateGetAccountHistoryGETaccount/history1
privateGetSubaccountsGETsubaccounts5
privateGetSubaccountsTransfersGETsubaccounts/transfers5
privateGetSubaccountsTransfersTransferIdGETsubaccounts/transfers/{transferId}5
privateGetInstitutionalSubaccountsBalanceGETinstitutional/subaccounts/balance5
privateGetInstitutionalSubaccountsHistoryGETinstitutional/subaccounts/history5
privateGetInstitutionalSubaccountsOrdersOpenGETinstitutional/subaccounts/orders/open5
privatePostOrderPOSTorder1
privatePostCancelOrdersAfterPOSTcancelOrdersAfter5
privatePostWithdrawalPOSTwithdrawal1
privatePostCryptoWithdrawalPOSTcrypto/withdrawal25
privatePostSubaccountsPOSTsubaccounts5
privatePostSubaccountsTransfersPOSTsubaccounts/transfers5
privatePutOrderPUTorder1
privateDeleteOrderDELETEorder1
privateDeleteOrdersDELETEorders25
privateDeleteAtomicOrdersDELETEatomic/orders100
privateDeleteInstitutionalSubaccountsOrderDELETEinstitutional/subaccounts/order1
privateDeleteInstitutionalSubaccountsOrdersDELETEinstitutional/subaccounts/orders25

On this page