Recent Trades List

Get recent market trades of a specific symbol.

GET https//:api.staging.dexilon.io/api/v1/trades

Weight: 5

Market trades means trades filled in the order book. Only market trades will be returned, which means the Liquidation Auction trades won't be returned.

Query Parameters

Name
Type
Description

symbol*

String

Symbol name

Request Body

Name
Type
Description

limit

Integer

Number of returned trades.

Default: 20. Max: 1000

[ {
    "amount" : 0.4,
    "price" : 23552.9,
    "time" : 1435945223249
    "tradeId" : 28458,
    "isBuyerMaker" : true
}, {
    "amount" : 1,
    "price" : 23553.8,
    "time" : 1435945223249
    "tradeId" : 28457,
    "isBuyerMaker" : false
} ]

Last updated