GET
/
v3
/
public
/
marketTradesHistory
curl --request GET \
  --url https://api.woox.io/v3/public/marketTradesHistory
{
  "success": true,
  "timestamp": 123,
  "data": {
    "rows": [
      {
        "id": 123,
        "symbol": "<string>",
        "side": "<string>",
        "executedPrice": "<string>",
        "executedQuantity": "<string>",
        "executedTimestamp": 123,
        "source": 123
      }
    ]
  }
}

Limit: 10 requests per 1 second per IP address

Query Parameters

symbol
string
required

Symbol name

before
integer

The id cursor for fetching the previous page of results, excluding the trade associated with the cursor itself. Either before or after can be specified. If both are provided, before takes precedence. If neither is passed, the results default to starting from the most recent trades.

after
integer

The id cursor for fetching the next page of results, excluding the trade associated with the cursor itself. Either before or after can be specified. If both are provided, before takes precedence. If neither is passed, the results default to starting from the most recent trades.

limit
integer
default:100

Numbers of trades you want to query. Maximum of 1000 trades allowed.

Response

200 - application/json

The response is of type object.