Get account fills. Filter by market or start_time, end_time.
GET /fills
Parameters{ market_id: 'BTC-USD' // (optional) start_time: 1669629461258298// (optional) end_time: 1669629461258298// (optional) p_limit: 100,// max rows returned, max 1000 p_page:0,// pagination page, index begins at 0 p_order:"DESC"// default "DESC" for descending and "ASC" for ascending}
Tip: Fills are indexed by timestamp; if start_time is not specified, the response will take longer as it will parse through your full order history. Queries with start_time parameter could be up to 10x faster than queries without start_time.