User history feed
HTTP
User history feed
Orders across wallets, open orders, and lookup by beacon
POST
User history feed
Endpoints under
Plus paging query params.
user-history-feed return orders across one or more wallets (PKH list), optionally filtered by asset or “open only”.
Auth: Public
POST /v1/user-history-feed/initial/state
Initial ledger + mempool snapshot for the given PKHs.Query parameters
Paging:offset, limit (default limit 100, max 100).
Body
JSON array of at least one PKH:Response
SameOrderInitialStateResponse shape as Orders feed: { "ledger": { "count", "items" }, "mempool": [] }.
POST /v1/user-history-feed/initial/state/by/asset
Same as above but restricted to a single asset (adds query).Query parameters
Asset id to filter.
Body
Non-empty PKH array.POST /v1/user-history-feed/initial/state/open
Only non-completed orders for the wallets. Same body and paging asinitial/state.
GET /v1/user-history-feed/order/trades
Returns a single trade record by beacon (currency symbol).Query parameters
Beacon / currency symbol identifier for the order.
Response
TradeOrder — discriminated union: CFMM or Spot with fields such as orderType, orderStatus, amounts, assets, prices, fill percent, etc.
WebSocket
Subscribe to UserHistoryByAddress or UserHistoryByAddressAndAsset with the appropriatedata payload. See WebSocket.