Symbol Price Ticker
Get the latest price for a symbol or all symbols.
HTTP Request
- GET
/api/v3/ticker/price
Weight(IP): 10
Request Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| symbol | string | NO | If the symbol is not sent, all symbols will be returned in an array. |
Response Parameters
| Name | Description |
|---|---|
| symbol | |
| price | Last price |
Response
{
"symbol": "BTCUSDT",
"price": "184.34"
}
or
[
{
"symbol": "BTCUSDT",
"price": "6.65"
},
{
"symbol": "ETHUSDT",
"price": "5.65"
}
]