Recent trades
Get a list of recent trades.
Endpoint
GET /sapi/v1/market/trades/Query Params
Field
Type
Mandatory
Description
Example
{baseurl}/sapi/v1/market/trades/?market=ethusdc&limit=100×tamp=1667855520&order_by=descResponse
{
"status": "success",
"message": "Retrieval Successful",
"payload": [
{
"id": 456142,
"price": 1336.63,
"amount": 0.0375,
"total": 50.123625,
"market": "ethusdc",
"created_at": 1667855520,
"taker_type": "sell"
},
{
"id": 456116,
"price": 1336.63,
"amount": 0.075,
"total": 100.24725,
"market": "ethusdc",
"created_at": 1667850041,
"taker_type": "sell"
}
]
}Last updated