e445c15e5bee
List orders
Lists orders for the enterprise. Supports filtering by type, status, asset, and date. Supports bulk fetch by ids[]. Excludes stateHistory — use the get-by-id endpoint for full detail.
Path parameters
Enterprise ID
Query parameters
Filter by exchange order ID; accepts a single value or repeated params for multiple IDs
Order type filter — MINT or BURN
Order status filter; accepts a single value or repeated params for multiple statuses
[ "\"PROCESSING\"" ]
Filter by asset — matches when sourceAsset OR destinationAsset equals this value
Token name filter — matches orders where sourceAsset OR destinationAsset is one of the configured assets for this token (e.g. token "usd1" → "hteth:usd1", "tbsc:usd1", ...). Accepts the logical token name.
Inclusive lower bound on createdAt (ISO8601)
Inclusive upper bound on createdAt (ISO8601)
1-indexed page number; default 1
Page size; default 50, max 200
Sort key; default createdAt
Sort direction; default desc
Response
OK
Example response
{
"orders": [
{
"type": "MINT",
"destination": {
"address": "0x123456789abcdef123456789abcdef123456789a",
"walletId": "67bc4b038f5408faefbfc8edcf6e6577",
"transferId": "6437d9f07d6a87000613e6c06e4218d3",
"transactionHash": "0xdeadbeef..."
},
"fee": {
"basisPoints": "5"
},
"idempotencyKey": "mint-order-2025-04-04-001",
"depositInstructions": {
"type": "GO_ACCOUNT",
"sequenceId": "order-deposit:95bdbd9c-9cdc-41a4-ae70-165387b7aa51",
"address": "0x123456789abcdef123456789abcdef123456789a"
},
"orderMethod": "ISSUER_DIRECT"
}
],
"total": 142,
"pageNo": 1,
"pageSize": 50
}