Skip to main content
GET
/
v1
/
public
/
market_trades
Get market trades
curl --request GET \
  --url https://api.orderly.org/v1/public/market_trades
{
  "success": true,
  "data": {
    "rows": [
      {
        "symbol": "PERP_ETH_USDC",
        "side": "BUY",
        "executed_price": 2050,
        "executed_quantity": 1,
        "executed_timestamp": 1683878609166
      }
    ]
  },
  "timestamp": 1702989203989
}

Query Parameters

symbol
string
required

Symbol to query, for example PERP_BTC_USDC.

limit
integer

Numbers of trades want to query.

Response

200 - application/json

Success

success
boolean
required

Indicates whether the request was successful.

Example:

true

data
object
required
timestamp
integer

Server timestamp in milliseconds.

Example:

1702989203989