Get TWAP order history
Retrieve TWAP order history for a specific user including completed and cancelled orders. Returns historical TWAP orders sorted by most recent first. Supports filtering by timestamp range, sorting by timestamp, and pagination. Page size is capped at 200.
Query parameters
User account address (user query alias is also accepted)
Page size
Page offset
Start timestamp in Unix milliseconds (inclusive). Must be provided together with end_timestamp.
End timestamp in Unix milliseconds (inclusive). Must be provided together with start_timestamp.
Sort key for history endpoints
Sort key for history ordering. Defaults to timestamp when omitted.
Sort direction for history ordering. Defaults to DESC when omitted.
Response
TWAP history retrieved successfully
Example response
{
"items": [
{
"client_order_id": "client_order_123",
"duration_s": 300,
"frequency_s": 30,
"is_buy": true,
"market": "0xmarket123...",
"start_unix_ms": 1730841600000
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.