Trades

Get recent trades on market, each trade is included only once. Trades are sorted in reverse creation order.

get

Get recent trades on market, each trade is included only once. Trades are sorted in reverse creation order.

Path parameters
marketstring · enumRequiredPossible values:
Query parameters
limitinteger · int32 · min: 1 · max: 1000Optional

Limit the number of returned trades. Default to 100.

timestampinteger · int32Optional

An integer represents the seconds elapsed since Unix epoch.If set, only trades executed before the time will be returned.

order_bystring · enumOptional

If set, returned trades will be sorted in specific order, default to 'desc'.

Possible values:
Responses
200
Get recent trades on market, each trade is included only once. Trades are sorted in reverse creation order.
application/json
get
GET /api/v2/live/public/markets/{market}/trades HTTP/1.1
Host: www.mameex.com
Accept: */*
200

Get recent trades on market, each trade is included only once. Trades are sorted in reverse creation order.

[
  {
    "id": "text",
    "price": 1,
    "amount": 1,
    "total": 1,
    "fee_currency": 1,
    "fee": 1,
    "fee_amount": 1,
    "market": "text",
    "created_at": "text",
    "taker_type": "text",
    "side": "text",
    "order_id": 1
  }
]

Last updated