Skip to main content

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

ParameterRequiredTypeComments
symbolfalsestringName of the trading pair

Response Parameters

ParameterTypeComments
symbolstringName of the trading pair
pricestringLast 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
}