get
https://api.liquiditytech.com/api/v1/trading/archive/executions/pageable
Rate Limit: 5 requests per 10 seconds
This endpoint returns historical execution records for the period between 7 and 90 days ago.
It is intended for backfilling, reconciliation, and reporting use cases that require access to older trades beyond the recent 7-day window.
Request
| Name | Type | Mandatory | Description |
|---|---|---|---|
| orderId | String | N | Order ID. If provided, the query will return executions related to this order. |
| sym | String | N | Trading pair unique identifier. For example: BINANCE_SPOT_BTC_USDT, BINANCE_PERP_BTC_USDT. |
| exchange | String | N | Exchange type, such as BINANCE, OKX, EDX. |
| businessType | String | N | Business type of the trade, for example SPOT, PERP, MARGIN. |
| begin | String | N | Start time of the query window. If not specified, the default is to query data from up to 7 days ago. |
| end | String | N | End time of the query window. If not specified, the current time is used. |
| page | String | N | Current page number (starting from 1). |
| pageSize | String | N | Page size. Default is 1000, maximum 1000. |
Response
| Field | Type | Description |
|---|---|---|
| transactionId | String | Unique identifier of this trade execution record. One order may generate multiple executions. |
| portfolioId | String | Identifier of the portfolio or sub-account to which this trade belongs. |
| orderId | String | System-generated order ID associated with this execution. |
| exchangeType | String | Venue where the trade was executed (e.g. BINANCE, OKX, EDX). |
| businessType | String | Business type of the trade, such as SPOT, PERP, MARGIN. |
| sym | String | Internal unique identifier of the trading pair or instrument. |
| side | String | Trade side, such as BUY or SELL (or other venue-specific side values). |
| quantity | String | Executed quantity for this trade. |
| price | String | Executed price for this trade. |
| tradingFee | String | Trading fee charged for this execution. |
| tradingFeeCoin | String | Currency in which the trading fee is charged (e.g. USDT, BTC). |
| rpnl | String | Realized PnL generated by this execution. |
| clientOrderId | String | Client-defined order ID passed when placing the order (used for idempotency and client-side tracking). |
| algoOrderId | String | ID of the parent algo order if this execution was generated by an algorithmic strategy; 0 or empty if not applicable. |
| createAt | String | Timestamp when this trade execution was created, in milliseconds since Unix epoch. |
| execType | String | Liquidity role of this execution: "MAKER" or "TAKER". |
