GET
/
v1
/
perps
/
aster
/
markets
List Markets
curl --request GET \
  --url https://api.example.com/v1/perps/aster/markets

Upstream Mapping

Maps to Aster’s GET /fapi/v1/exchangeInfo. The Provider API normalizes the Binance-compatible response format.

Request

No parameters required.

Example

curl -H "X-API-Key: $API_KEY" \
  https://api.perps.studio/v1/perps/aster/markets
Example Response
[
  {
    "symbol": "BTC",
    "name": "Bitcoin",
    "pricePrecision": 2,
    "sizePrecision": 3,
    "minSize": "0.001",
    "maxLeverage": 125,
    "makerFee": "0.0002",
    "takerFee": "0.0005"
  }
]
Aster uses Binance-compatible symbol formats internally (e.g., BTCUSDT). The Provider API normalizes these to simple symbols (e.g., BTC) for consistency with Hyperliquid.