v3
latestOpenAPI 3.0.02026-07-311784111.3 MBRetrieves the latest user trades that have occurred for instruments in a specific currency. Returns trade details including price, amount, direction, timestamp, trade ID, and order ID for all instruments in the currency.
Results can be filtered by instrument kind, trade ID range, or timestamp range. Use the count parameter to limit the number of trades returned, and sorting to control the order. To retrieve trades for a specific subaccount, use the subaccount_id parameter. Use historical to retrieve historical trade data.
📖 Related Article: Accessing Historical Trades and Orders Using API
Scope: trade:read
Query parameters
Currency, i.e "BTC", "ETH", "USDC"
The currency symbol
Instrument kind: "future", "option", "spot", "future_combo", "option_combo", "combo" for any combo or "any" for all
Instrument kind, "combo" for any combo or "any" for all. If not provided instruments of all kinds are considered
Unique (per currency) trade identifier
The ID of the first trade to be returned. Number for BTC trades, or hyphen name in ex. "ETH-15" # "ETH_USDC-16"
Unique (per currency) trade identifier
The ID of the last trade to be returned. Number for BTC trades, or hyphen name in ex. "ETH-15" # "ETH_USDC-16"
Number of requested items, default - 10, maximum - 1000
The timestamp (milliseconds since the Unix epoch)
The earliest timestamp to return result from (milliseconds since the UNIX epoch). When param is provided trades are returned from the earliest
The timestamp (milliseconds since the Unix epoch)
The most recent timestamp to return result from (milliseconds since the UNIX epoch). Only one of params: start_timestamp, end_timestamp is truly required
Direction of results sorting (default value means no sorting, results will be returned in order in which they left the database)
Determines whether historical trade and order records should be retrieved.
- false (default): Returns recent records: orders for 30 min, trades for 24h.
- true: Fetches historical records, available after a short delay due to indexing. Recent data is not included.
📖 Related Article: Accessing Historical Trades and Orders Using API
The user id for the subaccount
Response
Success response
Example response
{
"result": {
"trades": [
{
"instrument_name": "BTC-PERPETUAL",
"timestamp": 1517329113791,
"block_trade_id": "154"
}
]
}
}