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_currencyparameter; the response is identical for USDT and INR traders. All prices and notional values are USDT-denominated;quantity_step,min_contract, andmax_contractare 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
| Parameter | Type | Required | Description |
|---|---|---|---|
sort | string | No | Sort by: price, volume, change_perc, or popularity (default) |
order | string | No | Sort order: asc or desc |
offset | number | No | Number of records to skip (default: 0) |
limit | number | No | Maximum 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
| Field | Description |
|---|---|
id | Asset ID used to create positions in a particular asset. |
name | Asset name (e.g. "Bitcoin"). |
symbol | Trading symbol (e.g. "BTCUSDT"). |
min_contract | Minimum quantity for which a position can be opened (base asset). |
max_contract | Maximum quantity for which a position can be opened (base asset). |
quantity_step | Multiple of min contract value. Contracts must be in multiples of this value. |
min_notional_value | Minimum notional value for orders (USDT). |
min_leverage | Minimum allowed leverage. |
max_leverage | Maximum allowed leverage. |
price | Current 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, andpopularity. These are unchanged by margin currency.
Notes
- Pagination is controlled by
limitandoffset. Uselimitto set how many assets to return andoffsetto skip a number of assets, to paginate through the full list.
