CCXT
digifinex

digifinex implicit API

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

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

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

88 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicSpotGetMarketSymbolsGET{market}/symbols
publicSpotGetKlineGETkline
publicSpotGetMarginCurrenciesGETmargin/currencies
publicSpotGetMarginSymbolsGETmargin/symbols
publicSpotGetMarketsGETmarkets
publicSpotGetOrderBookGETorder_book
publicSpotGetPingGETping
publicSpotGetSpotSymbolsGETspot/symbols
publicSpotGetTimeGETtime
publicSpotGetTradesGETtrades
publicSpotGetTradesSymbolsGETtrades/symbols
publicSpotGetTickerGETticker
publicSpotGetCurrenciesGETcurrencies
publicSwapGetPublicApiWeightGETpublic/api_weight
publicSwapGetPublicCandlesGETpublic/candles
publicSwapGetPublicCandlesHistoryGETpublic/candles_history
publicSwapGetPublicDepthGETpublic/depth
publicSwapGetPublicFundingRateGETpublic/funding_rate
publicSwapGetPublicFundingRateHistoryGETpublic/funding_rate_history
publicSwapGetPublicInstrumentGETpublic/instrument
publicSwapGetPublicInstrumentsGETpublic/instruments
publicSwapGetPublicTickerGETpublic/ticker
publicSwapGetPublicTickersGETpublic/tickers
publicSwapGetPublicTimeGETpublic/time
publicSwapGetPublicTradesGETpublic/trades

private

MethodHTTPEndpointCost
privateSpotGetMarketFinancelogGET{market}/financelog
privateSpotGetMarketMytradesGET{market}/mytrades
privateSpotGetMarketOrderGET{market}/order
privateSpotGetMarketOrderDetailGET{market}/order/detail
privateSpotGetMarketOrderCurrentGET{market}/order/current
privateSpotGetMarketOrderHistoryGET{market}/order/history
privateSpotGetMarginAssetsGETmargin/assets
privateSpotGetMarginFinancelogGETmargin/financelog
privateSpotGetMarginMytradesGETmargin/mytrades
privateSpotGetMarginOrderGETmargin/order
privateSpotGetMarginOrderCurrentGETmargin/order/current
privateSpotGetMarginOrderHistoryGETmargin/order/history
privateSpotGetMarginPositionsGETmargin/positions
privateSpotGetOtcFinancelogGETotc/financelog
privateSpotGetSpotAssetsGETspot/assets
privateSpotGetSpotFinancelogGETspot/financelog
privateSpotGetSpotMytradesGETspot/mytrades
privateSpotGetSpotOrderGETspot/order
privateSpotGetSpotOrderCurrentGETspot/order/current
privateSpotGetSpotOrderHistoryGETspot/order/history
privateSpotGetDepositAddressGETdeposit/address
privateSpotGetDepositHistoryGETdeposit/history
privateSpotGetWithdrawHistoryGETwithdraw/history
privateSpotPostMarketOrderCancelPOST{market}/order/cancel
privateSpotPostMarketOrderNewPOST{market}/order/new
privateSpotPostMarketOrderBatchNewPOST{market}/order/batch_new
privateSpotPostMarginOrderCancelPOSTmargin/order/cancel
privateSpotPostMarginOrderNewPOSTmargin/order/new
privateSpotPostMarginPositionClosePOSTmargin/position/close
privateSpotPostSpotOrderCancelPOSTspot/order/cancel
privateSpotPostSpotOrderNewPOSTspot/order/new
privateSpotPostTransferPOSTtransfer
privateSpotPostWithdrawNewPOSTwithdraw/new
privateSpotPostWithdrawCancelPOSTwithdraw/cancel
privateSwapGetAccountBalanceGETaccount/balance
privateSwapGetAccountPositionsGETaccount/positions
privateSwapGetAccountFinanceRecordGETaccount/finance_record
privateSwapGetAccountTradingFeeRateGETaccount/trading_fee_rate
privateSwapGetAccountTransferRecordGETaccount/transfer_record
privateSwapGetAccountFundingFeeGETaccount/funding_fee
privateSwapGetTradeHistoryOrdersGETtrade/history_orders
privateSwapGetTradeHistoryTradesGETtrade/history_trades
privateSwapGetTradeOpenOrdersGETtrade/open_orders
privateSwapGetTradeOrderInfoGETtrade/order_info
privateSwapPostAccountTransferPOSTaccount/transfer
privateSwapPostAccountLeveragePOSTaccount/leverage
privateSwapPostAccountPositionModePOSTaccount/position_mode
privateSwapPostAccountPositionMarginPOSTaccount/position_margin
privateSwapPostTradeBatchCancelOrderPOSTtrade/batch_cancel_order
privateSwapPostTradeBatchOrderPOSTtrade/batch_order
privateSwapPostTradeCancelOrderPOSTtrade/cancel_order
privateSwapPostTradeOrderPlacePOSTtrade/order_place
privateSwapPostFollowSponsorOrderPOSTfollow/sponsor_order
privateSwapPostFollowCloseOrderPOSTfollow/close_order
privateSwapPostFollowCancelOrderPOSTfollow/cancel_order
privateSwapPostFollowUserCenterCurrentPOSTfollow/user_center_current
privateSwapPostFollowUserCenterHistoryPOSTfollow/user_center_history
privateSwapPostFollowExpertCurrentOpenOrderPOSTfollow/expert_current_open_order
privateSwapPostFollowAddAlgoPOSTfollow/add_algo
privateSwapPostFollowCancelAlgoPOSTfollow/cancel_algo
privateSwapPostFollowAccountAvailablePOSTfollow/account_available
privateSwapPostFollowPlanTaskPOSTfollow/plan_task
privateSwapPostFollowInstrumentListPOSTfollow/instrument_list

On this page