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
| Name | Type | Required | Notes |
|---|---|---|---|
symbol | string | no | standard 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 }
]
priceis the price of the most-recent trade;"0"if the symbol has no trades yet.timeis server time at response.
Errors
| HTTP | code | msg |
|---|---|---|
400 | -1100 | Unknown symbol. |