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

Endpoint B2 — Ticker / Price

GET /api/v1/fdata/ticker/price

Returns the specification of a given contract, including contract type, mark price, and quote currency.

Request Parameters

ParameterTypeRequiredDescription
symbolstringRequiredContract identifier, format \{BASE\}-USD-PERP, e.g. BTC-USD-PERP

Response Fields

FieldTypeRequiredDescription
contract_typestringRequiredContract type, fixed as PERPETUAL
contract_pricedecimalRequiredCurrent mark price (markPrice)
contract_price_currencystringRequiredQuote currency, fixed as USD

Request Example

GET /api/v1/fdata/ticker/price?symbol=BTC-USD-PERP

Response Example

{
"contract_type": "PERPETUAL",
"contract_price": "65419.80",
"contract_price_currency": "USD"
}