Skip to main content
GET
/
api
/
v3
/
trades
Get recent trades
curl --request GET \
  --url https://exchange.kuru.io/api/v3/trades
[
  {
    "id": 123456,
    "price": "100.50",
    "qty": "10.5",
    "time": 1699999999000,
    "isBuyerMaker": true
  },
  {
    "id": 123457,
    "price": "100.51",
    "qty": "5.2",
    "time": 1699999999500,
    "isBuyerMaker": false
  }
]

Query Parameters

symbol
string
required

Trading pair symbol

Example:

"MONUSDC"

limit
integer
default:500

Number of trades to return (default 500, max 1000)

Required range: 1 <= x <= 1000
Example:

500

Response

Successful response

id
integer<int64>
required

Trade ID

Example:

123456

price
string
required

Trade price

Example:

"100.50"

qty
string
required

Trade quantity

Example:

"10.5"

time
integer<int64>
required

Trade timestamp in milliseconds

Example:

1699999999000

isBuyerMaker
boolean
required

Whether the buyer is the maker

Example:

true