Skip to main content

Symbol Price Ticker V2

API Description

Latest price for a symbol or symbols.

HTTP Request

GET /fapi/v2/ticker/price

Weight:

1 for a single symbol;
2 when the symbol parameter is omitted

Request Parameters

NameTypeMandatoryDescription
symbolSTRINGNO
  • If the symbol is not sent, prices for all symbols will be returned in an array.
  • The field X-MBX-USED-WEIGHT-1M in response header is not accurate from this endpoint, please ignore.

Response Example

{
"symbol": "BTCUSDT",
"price": "6000.01",
"time": 1589437530011 // Transaction time
}

OR

[
{
"symbol": "BTCUSDT",
"price": "6000.01",
"time": 1589437530011
}
]