Get Recent Trades
Get public trades for an instrument. Maximum of 100 entries returned per request.
get/v1/info/trades
Query parameters
instrument_idinteger required
Instrument ID
start_timestampinteger
Start timestamp in milliseconds
Example:1767225600000
end_timestampinteger
End timestamp in milliseconds
Example:1767229200000
Response
Trades response.
Example response
{
"data": [
{
"trade_id": 1,
"instrument_id": 1,
"price": "100.00",
"quantity": "10.00",
"timestamp": 1767225600000,
"hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
]
}