Skip to main content

Symbol Price Ticker V2

Type: NONE

External endpoint: GET /fapi/v1/ticker/price
Rocky impl: GET /fapi/v1/ticker/price

Latest trade price for one symbol, or for all symbols if symbol is omitted.

Request

GET /fapi/v1/ticker/price?symbol=BTCUSDT

Query params

NameTypeRequiredNotes
symbolstringnostandard pair name. Omit for "all pairs".

Response — 200 (single)

{ "symbol": "BTCUSDT", "price": "76521.34", "time": 1748275200000 }

Response — 200 (all)

[
{ "symbol": "BTCUSDT", "price": "76521.34", "time": 1748275200000 },
{ "symbol": "ETHUSDT", "price": "3210.50", "time": 1748275200000 }
]
  • price is the price of the most-recent trade; "0" if the symbol has no trades yet.
  • time is server time at response.

Errors

HTTPcodemsg
400-1100Unknown symbol.