Skip to main content
GET
/
api
/
v3
/
ticker
/
24hr
Get 24-hour ticker
curl --request GET \
  --url https://exchange.kuru.io/api/v3/ticker/24hr
{
  "symbol": "MONUSDC",
  "priceChange": "1.50",
  "priceChangePercent": "1.52",
  "lastPrice": "100.50",
  "bidPrice": "100.49",
  "askPrice": "100.51",
  "openPrice": "99.00",
  "highPrice": "101.00",
  "lowPrice": "98.50",
  "volume": "1000000.50",
  "quoteVolume": "100000000.25",
  "openTime": 1699913599000,
  "closeTime": 1699999999000,
  "count": 10000
}

Query Parameters

symbol
string
required

Trading pair symbol

Example:

"MONUSDC"

Response

Successful response

24-hour ticker statistics

symbol
string
required

Symbol name

Example:

"MONUSDC"

priceChange
string
required

Price change in 24 hours

Example:

"1.50"

priceChangePercent
string
required

Price change percent in 24 hours

Example:

"1.52"

lastPrice
string
required

Last trade price

Example:

"100.50"

bidPrice
string
required

Best bid price

Example:

"100.49"

askPrice
string
required

Best ask price

Example:

"100.51"

openPrice
string
required

Opening price 24 hours ago

Example:

"99.00"

highPrice
string
required

Highest price in 24 hours

Example:

"101.00"

lowPrice
string
required

Lowest price in 24 hours

Example:

"98.50"

volume
string
required

Total traded volume in base asset

Example:

"1000000.50"

quoteVolume
string
required

Total traded volume in quote asset

Example:

"100000000.25"

openTime
integer<int64>
required

Opening time in milliseconds

Example:

1699913599000

closeTime
integer<int64>
required

Closing time in milliseconds

Example:

1699999999000

count
integer<int64>
required

Number of trades in 24 hours

Example:

10000