Recent Trades
Market Data APIs
Recent Trades
Retrieve recent trade executions for a trading symbol.
GET
Recent Trades
Notes
- side: buy / sell
- timestamp in milliseconds (UTC)
Supported Markets
US Stocks, HK Stocks, Crypto Examples:- US Stocks: AAPL.US, TSLA.US, MSFT.US
- HK Stocks: 700.HK, 9988.HK, 3690.HK
- Crypto: BTCUSDT, ETHUSDT, ADAUSDT
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| symbol | Yes | Trading symbol code |
| limit | No | Number of trades, default 100, max 1000 |
| type | No | Symbol type, optional. Not required when the symbol is unambiguous; if the API returns an AMBIGUOUS_SYMBOL error, pass the value as indicated. Values: stock, indices, crypto, forex |
Response Fields
| Field | Description |
|---|---|
| id | Trade ID |
| price | Trade execution price |
| quantity | Trade volume |
| side | Trade direction (buy/sell) |
| timestamp | Trade execution time (milliseconds, UTC) |
Authorizations
Query Parameters
Trading symbol
Example:
"700.HK"
Number of trades (default 100, max 1000)
Required range:
1 <= x <= 1000Example:
100
Symbol type, optional. Not required when the symbol is unambiguous; if the API returns an AMBIGUOUS_SYMBOL error, pass the value as indicated
Available options:
stock, indices, crypto, forex Example:
"stock"
