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
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Required | Contract identifier, format \{BASE\}-USD-PERP, e.g. BTC-USD-PERP |
Response Fields
| Field | Type | Required | Description |
|---|---|---|---|
| contract_type | string | Required | Contract type, fixed as PERPETUAL |
| contract_price | decimal | Required | Current mark price (markPrice) |
| contract_price_currency | string | Required | Quote 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"
}