CCXT
bigone

bigone implicit API

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

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

const bigone = new ccxt.bigone ();
const response = await bigone.publicGetPing (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 bigone API documentation: open.big.one

41 implicit endpoints across 5 access groups.

public

Base URL: https://{hostname}/api/v3

MethodHTTPEndpointCost
publicGetPingGETping
publicGetAssetPairsGETasset_pairs
publicGetAssetPairsAssetPairNameDepthGETasset_pairs/{asset_pair_name}/depth
publicGetAssetPairsAssetPairNameTradesGETasset_pairs/{asset_pair_name}/trades
publicGetAssetPairsAssetPairNameTickerGETasset_pairs/{asset_pair_name}/ticker
publicGetAssetPairsAssetPairNameCandlesGETasset_pairs/{asset_pair_name}/candles
publicGetAssetPairsTickersGETasset_pairs/tickers

private

Base URL: https://{hostname}/api/v3/viewer

MethodHTTPEndpointCost
privateGetAccountsGETaccounts
privateGetFundAccountsGETfund/accounts
privateGetAssetsAssetSymbolAddressGETassets/{asset_symbol}/address
privateGetOrdersGETorders
privateGetOrdersIdGETorders/{id}
privateGetOrdersMultiGETorders/multi
privateGetTradesGETtrades
privateGetWithdrawalsGETwithdrawals
privateGetDepositsGETdeposits
privatePostOrdersPOSTorders
privatePostOrdersIdCancelPOSTorders/{id}/cancel
privatePostOrdersCancelPOSTorders/cancel
privatePostWithdrawalsPOSTwithdrawals
privatePostTransferPOSTtransfer

contractPublic

Base URL: https://{hostname}/api/contract/v2

MethodHTTPEndpointCost
contractPublicGetSymbolsGETsymbols
contractPublicGetInstrumentsGETinstruments
contractPublicGetDepthSymbolSnapshotGETdepth@{symbol}/snapshot
contractPublicGetInstrumentsDifferenceGETinstruments/difference
contractPublicGetInstrumentsPricesGETinstruments/prices

contractPrivate

Base URL: https://{hostname}/api/contract/v2

MethodHTTPEndpointCost
contractPrivateGetAccountsGETaccounts
contractPrivateGetOrdersIdGETorders/{id}
contractPrivateGetOrdersGETorders
contractPrivateGetOrdersOpeningGETorders/opening
contractPrivateGetOrdersCountGETorders/count
contractPrivateGetOrdersOpeningCountGETorders/opening/count
contractPrivateGetTradesGETtrades
contractPrivateGetTradesCountGETtrades/count
contractPrivatePostOrdersPOSTorders
contractPrivatePostOrdersBatchPOSTorders/batch
contractPrivatePutPositionsSymbolMarginPUTpositions/{symbol}/margin
contractPrivatePutPositionsSymbolRiskLimitPUTpositions/{symbol}/risk-limit
contractPrivateDeleteOrdersIdDELETEorders/{id}
contractPrivateDeleteOrdersBatchDELETEorders/batch

webExchange

Base URL: https://{hostname}/api/

MethodHTTPEndpointCost
webExchangeGetV3AssetsGETv3/assets

On this page