Skip to main content
Version: V1.0 (Legacy)

Endpoint B1 — Product List

GET /api/v1/fdata/productList

Returns summary information of all listed perpetual contract products, including 24h market data, funding rates, fees, etc. No parameters required.

Request Parameters

No parameters required

Response Fields

FieldTypeRequiredDescription
ticker_idstringRequiredContract identifier, format \{BASE\}-USD-PERP, e.g. BTC-USD-PERP
base_currencystringRequiredBase asset symbol, e.g. BTC
quote_currencystringRequiredQuote asset, fixed as USD
last_pricedecimalRequiredLatest trade price
base_volumedecimalRequired24h base currency volume
USD_volumedecimalRecommended24h USD volume
quote_volumedecimalRequired24h quote currency volume
biddecimalRequiredCurrent best bid price (approximated by last_price)
askdecimalRequiredCurrent best ask price (approximated by last_price)
highdecimalRequired24h highest price
lowdecimalRequired24h lowest price
product_typestringRequiredContract type, fixed as PERPETUAL
open_interestdecimalRequiredOpen interest quantity (currently returns 0)
open_interest_usddecimalRequiredOpen interest USD value (currently returns 0)
index_pricedecimalRequiredIndex price
creation_timestampInteger (UTC ms)Futures/Options onlyAlways returns 0 for perpetual contracts
expiry_timestampInteger (UTC ms)Futures/Options onlyAlways returns 0 for perpetual contracts
funding_ratedecimalRequiredCurrent funding rate (lastFundingRate)
next_funding_ratedecimalRecommendedPredicted next funding rate
next_funding_rate_timestampInteger (UTC ms)RequiredNext funding rate settlement timestamp (nextFundingTime)
maker_feedecimalRecommendedMaker fee rate from product config (negative value indicates rebate)
taker_feedecimalRecommendedTaker fee rate from product config

Response Example

[
{
"ticker_id": "BTC-USD-PERP",
"base_currency": "BTC",
"quote_currency": "USD",
"last_price": "65420.50",
"base_volume": "2890.07",
"USD_volume": "188978040.17",
"quote_volume": "188978040.17",
"bid": "65420.50",
"ask": "65420.50",
"high": "66100.00",
"low": "64800.00",
"product_type": "PERPETUAL",
"open_interest": "0",
"open_interest_usd": "0",
"index_price": "65419.80",
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": "0.0001",
"next_funding_rate": "0.0001",
"next_funding_rate_timestamp": 1743091200000,
"maker_fee": "-0.0002",
"taker_fee": "0.0005"
}
]