CCXT
mudrex

mudrex implicit API

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

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

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

26 implicit endpoints across 2 access groups.

market

Base URL: https://trade.mudrex.com/fapi/v1

MethodHTTPEndpointCost
marketGetPriceKlineGETprice/kline1
marketGetPriceMarkKlineGETprice/mark-kline1

private

Base URL: https://trade.mudrex.com/fapi/v1

MethodHTTPEndpointCost
privateGetFuturesGETfutures1
privateGetFuturesAssetIdGETfutures/{asset_id}1
privateGetWalletFundsGETwallet/funds5
privateGetFuturesFundsGETfutures/funds5
privateGetFuturesOrdersGETfutures/orders1
privateGetFuturesOrdersHistoryGETfutures/orders/history1
privateGetFuturesOrdersOrderIdGETfutures/orders/{order_id}1
privateGetFuturesPositionsGETfutures/positions1
privateGetFuturesPositionsHistoryGETfutures/positions/history1
privateGetFuturesFeeHistoryGETfutures/fee/history1
privateGetFuturesAssetIdLeverageGETfutures/{asset_id}/leverage2
privateGetFuturesPositionsPositionIdLiqPriceGETfutures/positions/{position_id}/liq-price1
privatePostWalletFuturesTransferPOSTwallet/futures/transfer5
privatePostFuturesTransfersInrPOSTfutures/transfers/inr5
privatePostFuturesAssetIdOrderPOSTfutures/{asset_id}/order2
privatePostFuturesPositionsPositionIdClosePOSTfutures/positions/{position_id}/close2
privatePostFuturesPositionsPositionIdClosePartialPOSTfutures/positions/{position_id}/close/partial2
privatePostFuturesPositionsPositionIdReversePOSTfutures/positions/{position_id}/reverse2
privatePostFuturesPositionsPositionIdAddMarginPOSTfutures/positions/{position_id}/add-margin2
privatePostFuturesPositionsPositionIdRiskorderPOSTfutures/positions/{position_id}/riskorder2
privatePostFuturesAssetIdLeveragePOSTfutures/{asset_id}/leverage2
privatePatchFuturesOrdersOrderIdPATCHfutures/orders/{order_id}1
privatePatchFuturesPositionsPositionIdRiskorderPATCHfutures/positions/{position_id}/riskorder2
privateDeleteFuturesOrdersOrderIdDELETEfutures/orders/{order_id}2

On this page