Get Recent Trades
This endpoint retrieves a list of the most recent executed trades for a specific trading pair on NAO Futures Plus – Nami Exchange. It is intended for market activity tracking, analytics, and data part
GET http://nfp-gateway.nami.exchange/public/api/v1/price/recent-trades
Headers
Header
Description
Content-Type
application/json
Query Parameters
Parameter
Type
Description
Required
Example
symbol
string
Token
True
BTCUSDT
limit
number
limit
False
50
Response
{
"status": "ok",
"code": 0,
"message": "Recent trades retrieved successfully",
"data": [
{
"s": "btcusdt",
"p": 86874.1,
"S": "BUY",
"t": 1766049794,
"q": 0.001,
"Q": 86.8741
}
]
}{
"status": "error",
"code": 10005,
"message": "symbol parameter is required",
"data": null
}Last updated