v2

latestOpenAPI 3.0.3Apache 2.02026-07-3149289180.2 KB

Get Instruments

Get all instruments.

get/v1/info/instruments

Query parameters

instrument_idinteger

Instrument ID

instrument_type'perpetual'

Instrument type

category'equity' | 'commodity' | 'index' | 'crypto'

Instrument category

Response

Instruments response.

instrument_idinteger required

Instrument ID

instrument_type'perpetual' required

Instrument type

category'equity' | 'commodity' | 'index' | 'crypto' required

Instrument category

isolated_onlyboolean required

Whether the instrument supports only isolated account margin. When false, both cross and isolated account margin modes are supported.

symbolstring required

Instrument symbol

base_assetstring required

Base asset name

quote_assetstring required

Quote asset name

funding_intervalstring required

Funding interval

quantity_decimalsinteger required

Number of decimal places for quantity.

price_decimalsinteger required

Number of decimal places for price. Non-integer prices have a maximum of 5 significant figures; integer prices are allowed regardless of significant figures.

price_boundsstring required

Price bounds percentage

liquidation_feestring required

Liquidation fee rate

max_order_countinteger required

Maximum open order count

min_notionalstring required

Minimum notional value in USD

max_market_notionalstring required

Maximum market order notional value in USD

max_limit_notionalstring required

Maximum limit order notional value in USD

max_leverageinteger required

Maximum leverage

Example response

[
  {
    "symbol": "NVDA-USDC",
    "base_asset": "NVDA",
    "quote_asset": "USDC",
    "funding_interval": "1h",
    "quantity_decimals": 2,
    "price_decimals": 2,
    "price_bounds": "0.05",
    "liquidation_fee": "0.025",
    "max_order_count": 200,
    "min_notional": "1.00",
    "max_market_notional": "1000000.00",
    "max_limit_notional": "10000000.00",
    "max_leverage": 20,
    "risk_tiers": [
      {
        "lower_bound": "0",
        "max_leverage": 20
      }
    ]
  }
]