Skip to main content

Symbol Price Ticker

API Description#

Latest price for a symbol or symbols.

HTTP Request#

GET /fapi/v1/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.

Response Example#

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

OR

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