Guides
Guides

Assets

Endpoints to list assets and retrieve individual asset details. Get a paginated list of all tradable futures asset.

Unchanged by margin currency. This endpoint has no trade_currency parameter; the response is identical for USDT and INR traders. All prices and notional values are USDT-denominated; quantity_step, min_contract, and max_contract are in the base asset.

Request

curl -X GET "https://trade.mudrex.com/fapi/v1/futures?sort=price&order=desc&offset=0&limit=3" \
  -H "X-Authentication: your-secret-key"

Parameters

ParameterTypeRequiredDescription
sortstringNoSort by: price, volume, change_perc, or popularity (default)
orderstringNoSort order: asc or desc
offsetnumberNoNumber of records to skip (default: 0)
limitnumberNoMaximum number of records to return (default: 20)

Response

Status: 200 OK

{
    "success": true,
    "data": [
        {
            "id": "01903a7b-bf65-707d-a7dc-d7b84c3c756c",
            "name": "Bitcoin",
            "symbol": "BTCUSDT",
            "min_contract": "0.001",
            "max_contract": "1500",
            "quantity_step": "0.001",
            "min_notional_value": "5",
            "min_leverage": "1",
            "max_leverage": "100",
            "price": "66809.2"
        }
    ]
}

Response fields

FieldDescription
idAsset ID used to create positions in a particular asset.
nameAsset name (e.g. "Bitcoin").
symbolTrading symbol (e.g. "BTCUSDT").
min_contractMinimum quantity for which a position can be opened (base asset).
max_contractMaximum quantity for which a position can be opened (base asset).
quantity_stepMultiple of min contract value. Contracts must be in multiples of this value.
min_notional_valueMinimum notional value for orders (USDT).
min_leverageMinimum allowed leverage.
max_leverageMaximum allowed leverage.
priceCurrent market price (USDT).

The full listing also returns min_price, max_price, price_step, max_market_contract, funding_fee_perc, trading_fee_perc, leverage_step, funding_interval, last_day_price, change_perc, volume, and popularity. These are unchanged by margin currency.

Notes

  • Pagination is controlled by limit and offset. Use limit to set how many assets to return and offset to skip a number of assets, to paginate through the full list.