跳到主要内容
版本:V1.0 (Legacy)

Endpoint B1 — Product List

GET /api/v1/fdata/productList

返回系统内所有已上线的永续合约产品摘要信息,包含 24h 行情、资金费率、手续费等。无需传参。

Request Parameters

无需传参

Response Fields

字段名类型必填描述
ticker_idstring必填合约标识符,格式 \{BASE\}-USD-PERP,如 BTC-USD-PERP
base_currencystring必填基础资产符号,如 BTC
quote_currencystring必填报价资产,固定为 USD
last_pricedecimal必填最新成交价
base_volumedecimal必填24h 基础货币成交量
USD_volumedecimal推荐24h USD 成交量
quote_volumedecimal必填24h 报价货币成交量
biddecimal必填当前买一价(取 last_price 近似)
askdecimal必填当前卖一价(取 last_price 近似)
highdecimal必填24h 最高价
lowdecimal必填24h 最低价
product_typestring必填合约类型,固定为 PERPETUAL
open_interestdecimal必填未平仓合约数量(暂返回 0
open_interest_usddecimal必填未平仓 USD 价值(暂返回 0
index_pricedecimal必填指数价格
creation_timestampInteger (UTC ms)仅期货/期权永续合约固定返回 0
expiry_timestampInteger (UTC ms)仅期货/期权永续合约固定返回 0
funding_ratedecimal必填当前资金费率(lastFundingRate)
next_funding_ratedecimal推荐预测下期资金费率
next_funding_rate_timestampInteger (UTC ms)必填下次资金费率结算时间戳(nextFundingTime)
maker_feedecimal推荐Maker 费率,来自产品配置(负值表示返佣)
taker_feedecimal推荐Taker 费率,来自产品配置

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"
}
]