CCXT
bydfi

bydfi implicit API

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

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

const bydfi = new ccxt.bydfi ();
const response = await bydfi.publicGetV1PublicApiLimits (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 bydfi API documentation: developers.bydfi.com

45 implicit endpoints across 2 access groups.

public

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

MethodHTTPEndpointCost
publicGetV1PublicApiLimitsGETv1/public/api_limits1
publicGetV1FapiMarketExchangeInfoGETv1/fapi/market/exchange_info1
publicGetV1FapiMarketDepthGETv1/fapi/market/depth1
publicGetV1FapiMarketTradesGETv1/fapi/market/trades1
publicGetV1FapiMarketKlinesGETv1/fapi/market/klines1
publicGetV1FapiMarketTicker24hrGETv1/fapi/market/ticker/24hr1
publicGetV1FapiMarketTickerPriceGETv1/fapi/market/ticker/price1
publicGetV1FapiMarketMarkPriceGETv1/fapi/market/mark_price1
publicGetV1FapiMarketFundingRateGETv1/fapi/market/funding_rate1
publicGetV1FapiMarketFundingRateHistoryGETv1/fapi/market/funding_rate_history1
publicGetV1FapiMarketRiskLimitGETv1/fapi/market/risk_limit1

private

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

MethodHTTPEndpointCost
privateGetV1AccountAssetsGETv1/account/assets1
privateGetV1AccountTransferRecordsGETv1/account/transfer_records1
privateGetV1SpotDepositRecordsGETv1/spot/deposit_records1
privateGetV1SpotWithdrawRecordsGETv1/spot/withdraw_records1
privateGetV1FapiTradeOpenOrderGETv1/fapi/trade/open_order1
privateGetV1FapiTradePlanOrderGETv1/fapi/trade/plan_order1
privateGetV1FapiTradeLeverageGETv1/fapi/trade/leverage1
privateGetV1FapiTradeHistoryOrderGETv1/fapi/trade/history_order1
privateGetV1FapiTradeHistoryTradeGETv1/fapi/trade/history_trade1
privateGetV1FapiTradePositionHistoryGETv1/fapi/trade/position_history1
privateGetV1FapiTradePositionsGETv1/fapi/trade/positions1
privateGetV1FapiAccountBalanceGETv1/fapi/account/balance1
privateGetV1FapiUserDataAssetsMarginGETv1/fapi/user_data/assets_margin1
privateGetV1FapiUserDataPositionSideDualGETv1/fapi/user_data/position_side/dual1
privateGetV1AgentTeamsGETv1/agent/teams1
privateGetV1AgentAgentLinksGETv1/agent/agent_links1
privateGetV1AgentRegularOverviewGETv1/agent/regular_overview1
privateGetV1AgentAgentSubOverviewGETv1/agent/agent_sub_overview1
privateGetV1AgentPartenerUserDepositGETv1/agent/partener_user_deposit1
privateGetV1AgentPartenerUsersDataGETv1/agent/partener_users_data1
privateGetV1AgentAffiliateUidsGETv1/agent/affiliate_uids1
privateGetV1AgentAffiliateCommissionGETv1/agent/affiliate_commission1
privateGetV1AgentInternalWithdrawalStatusGETv1/agent/internal_withdrawal_status1
privatePostV1AccountTransferPOSTv1/account/transfer1
privatePostV1FapiTradePlaceOrderPOSTv1/fapi/trade/place_order1
privatePostV1FapiTradeBatchPlaceOrderPOSTv1/fapi/trade/batch_place_order1
privatePostV1FapiTradeEditOrderPOSTv1/fapi/trade/edit_order1
privatePostV1FapiTradeBatchEditOrderPOSTv1/fapi/trade/batch_edit_order1
privatePostV1FapiTradeCancelAllOrderPOSTv1/fapi/trade/cancel_all_order1
privatePostV1FapiTradeLeveragePOSTv1/fapi/trade/leverage1
privatePostV1FapiTradeBatchLeverageMarginPOSTv1/fapi/trade/batch_leverage_margin1
privatePostV1FapiUserDataMarginTypePOSTv1/fapi/user_data/margin_type1
privatePostV1FapiUserDataPositionSideDualPOSTv1/fapi/user_data/position_side/dual1
privatePostV1AgentInternalWithdrawalPOSTv1/agent/internal_withdrawal1

On this page