CCXT
foxbit

foxbit implicit API

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

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

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

22 implicit endpoints across 2 access groups.

v3

MethodHTTPEndpointCost
v3PublicGetCurrenciesGETcurrencies5
v3PublicGetMarketsGETmarkets5
v3PublicGetMarketsTicker24hrGETmarkets/ticker/24hr60
v3PublicGetMarketsMarketOrderbookGETmarkets/{market}/orderbook6
v3PublicGetMarketsMarketCandlesticksGETmarkets/{market}/candlesticks12
v3PublicGetMarketsMarketTradesHistoryGETmarkets/{market}/trades/history12
v3PublicGetMarketsMarketTicker24hrGETmarkets/{market}/ticker/24hr15
v3PrivateGetAccountsGETaccounts2
v3PrivateGetAccountsSymbolTransactionsGETaccounts/{symbol}/transactions60
v3PrivateGetOrdersGETorders2
v3PrivateGetOrdersByOrderIdIdGETorders/by-order-id/{id}2
v3PrivateGetTradesGETtrades6
v3PrivateGetDepositsAddressGETdeposits/address10
v3PrivateGetDepositsGETdeposits10
v3PrivateGetWithdrawalsGETwithdrawals10
v3PrivateGetMeFeesTradingGETme/fees/trading60
v3PrivatePostOrdersPOSTorders2
v3PrivatePostOrdersBatchPOSTorders/batch7.5
v3PrivatePostOrdersCancelReplacePOSTorders/cancel-replace3
v3PrivatePostWithdrawalsPOSTwithdrawals10
v3PrivatePutOrdersCancelPUTorders/cancel2

status

Base URL: https://metadata-v2.foxbit.com.br/api

MethodHTTPEndpointCost
statusPublicGetStatusGETstatus30

On this page