Back to Ccxt

Digifinex

wiki/exchanges-implicit/digifinex.md

4.5.737.8 KB
Original Source

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#, Go and Java. 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:

<!-- tabs:start -->

JavaScript

javascript
const digifinex = new ccxt.digifinex ();
const response = await digifinex.publicSpotGetMarketSymbols (params);

TypeScript

typescript
import ccxt from 'ccxt';
const digifinex = new ccxt.digifinex ();
const response = await digifinex.publicSpotGetMarketSymbols (params);

Python

python
import ccxt
digifinex = ccxt.digifinex()
response = digifinex.public_spot_get_market_symbols(params)

PHP

php
$digifinex = new \ccxt\digifinex();
$response = $digifinex->public_spot_get_market_symbols($params);

C#

csharp
using ccxt;
var digifinex = new Digifinex();
var response = await digifinex.publicSpotGetMarketSymbols(parameters);

Go

go
digifinex := ccxt.NewDigifinex(nil)
response := <-digifinex.PublicSpotGetMarketSymbols(params)
<!-- tabs:end -->

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}/symbols1
publicSpotGetKlineGETkline1
publicSpotGetMarginCurrenciesGETmargin/currencies1
publicSpotGetMarginSymbolsGETmargin/symbols1
publicSpotGetMarketsGETmarkets1
publicSpotGetOrderBookGETorder_book1
publicSpotGetPingGETping1
publicSpotGetSpotSymbolsGETspot/symbols1
publicSpotGetTimeGETtime1
publicSpotGetTradesGETtrades1
publicSpotGetTradesSymbolsGETtrades/symbols1
publicSpotGetTickerGETticker1
publicSpotGetCurrenciesGETcurrencies1
publicSwapGetPublicApiWeightGETpublic/api_weight1
publicSwapGetPublicCandlesGETpublic/candles1
publicSwapGetPublicCandlesHistoryGETpublic/candles_history1
publicSwapGetPublicDepthGETpublic/depth1
publicSwapGetPublicFundingRateGETpublic/funding_rate1
publicSwapGetPublicFundingRateHistoryGETpublic/funding_rate_history1
publicSwapGetPublicInstrumentGETpublic/instrument1
publicSwapGetPublicInstrumentsGETpublic/instruments1
publicSwapGetPublicTickerGETpublic/ticker1
publicSwapGetPublicTickersGETpublic/tickers1
publicSwapGetPublicTimeGETpublic/time1
publicSwapGetPublicTradesGETpublic/trades1

private

MethodHTTPEndpointCost
privateSpotGetMarketFinancelogGET{market}/financelog1
privateSpotGetMarketMytradesGET{market}/mytrades1
privateSpotGetMarketOrderGET{market}/order1
privateSpotGetMarketOrderDetailGET{market}/order/detail1
privateSpotGetMarketOrderCurrentGET{market}/order/current1
privateSpotGetMarketOrderHistoryGET{market}/order/history1
privateSpotGetMarginAssetsGETmargin/assets1
privateSpotGetMarginFinancelogGETmargin/financelog1
privateSpotGetMarginMytradesGETmargin/mytrades1
privateSpotGetMarginOrderGETmargin/order1
privateSpotGetMarginOrderCurrentGETmargin/order/current1
privateSpotGetMarginOrderHistoryGETmargin/order/history1
privateSpotGetMarginPositionsGETmargin/positions1
privateSpotGetOtcFinancelogGETotc/financelog1
privateSpotGetSpotAssetsGETspot/assets1
privateSpotGetSpotFinancelogGETspot/financelog1
privateSpotGetSpotMytradesGETspot/mytrades1
privateSpotGetSpotOrderGETspot/order1
privateSpotGetSpotOrderCurrentGETspot/order/current1
privateSpotGetSpotOrderHistoryGETspot/order/history1
privateSpotGetDepositAddressGETdeposit/address1
privateSpotGetDepositHistoryGETdeposit/history1
privateSpotGetWithdrawHistoryGETwithdraw/history1
privateSpotPostMarketOrderCancelPOST{market}/order/cancel1
privateSpotPostMarketOrderNewPOST{market}/order/new1
privateSpotPostMarketOrderBatchNewPOST{market}/order/batch_new1
privateSpotPostMarginOrderCancelPOSTmargin/order/cancel1
privateSpotPostMarginOrderNewPOSTmargin/order/new1
privateSpotPostMarginPositionClosePOSTmargin/position/close1
privateSpotPostSpotOrderCancelPOSTspot/order/cancel1
privateSpotPostSpotOrderNewPOSTspot/order/new1
privateSpotPostTransferPOSTtransfer1
privateSpotPostWithdrawNewPOSTwithdraw/new1
privateSpotPostWithdrawCancelPOSTwithdraw/cancel1
privateSwapGetAccountBalanceGETaccount/balance1
privateSwapGetAccountPositionsGETaccount/positions1
privateSwapGetAccountFinanceRecordGETaccount/finance_record1
privateSwapGetAccountTradingFeeRateGETaccount/trading_fee_rate1
privateSwapGetAccountTransferRecordGETaccount/transfer_record1
privateSwapGetAccountFundingFeeGETaccount/funding_fee1
privateSwapGetTradeHistoryOrdersGETtrade/history_orders1
privateSwapGetTradeHistoryTradesGETtrade/history_trades1
privateSwapGetTradeOpenOrdersGETtrade/open_orders1
privateSwapGetTradeOrderInfoGETtrade/order_info1
privateSwapPostAccountTransferPOSTaccount/transfer1
privateSwapPostAccountLeveragePOSTaccount/leverage1
privateSwapPostAccountPositionModePOSTaccount/position_mode1
privateSwapPostAccountPositionMarginPOSTaccount/position_margin1
privateSwapPostTradeBatchCancelOrderPOSTtrade/batch_cancel_order1
privateSwapPostTradeBatchOrderPOSTtrade/batch_order1
privateSwapPostTradeCancelOrderPOSTtrade/cancel_order1
privateSwapPostTradeOrderPlacePOSTtrade/order_place1
privateSwapPostFollowSponsorOrderPOSTfollow/sponsor_order1
privateSwapPostFollowCloseOrderPOSTfollow/close_order1
privateSwapPostFollowCancelOrderPOSTfollow/cancel_order1
privateSwapPostFollowUserCenterCurrentPOSTfollow/user_center_current1
privateSwapPostFollowUserCenterHistoryPOSTfollow/user_center_history1
privateSwapPostFollowExpertCurrentOpenOrderPOSTfollow/expert_current_open_order1
privateSwapPostFollowAddAlgoPOSTfollow/add_algo1
privateSwapPostFollowCancelAlgoPOSTfollow/cancel_algo1
privateSwapPostFollowAccountAvailablePOSTfollow/account_available1
privateSwapPostFollowPlanTaskPOSTfollow/plan_task1
privateSwapPostFollowInstrumentListPOSTfollow/instrument_list1