Last Traded Price
info
If symbol is not specified, the price from all symbols will be returned
HTTP Request
GET /spot/v3/public/quote/ticker/price
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| symbol | false | string | Name of the trading pair |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| symbol | string | Name of the trading pair |
| price | string | Last traded price |
Request Example
curl --location --request GET 'https://api-testnet.bybit.com/spot/v3/public/quote/ticker/price?symbol=BTCUSDT'
Response Example
{
"retCode": 0,
"retMsg": "OK",
"result": {
"symbol": "BTCUSDT",
"price": "21127.86"
},
"retExtInfo": {},
"time": 1659431315936
}