latestOpenAPI 3.0.32026-08-224982,0272.8 MB

e445c15e5bee

Mint

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.

get/api/mint/v1/enterprise/{enterpriseId}/orders

Path parameters

enterpriseIdstring required

Enterprise ID

Query parameters

idstring
Example:"95bdbd9c-9cdc-41a4-ae70-165387b7aa51"

Filter by exchange order ID; accepts a single value or repeated params for multiple IDs

type'MINT' | 'BURN'
Example:MINT

Order type filter — MINT or BURN

statusstring[]

Order status filter; accepts a single value or repeated params for multiple statuses

[
  "\"PROCESSING\""
]
assetstring
Example:sol:usd1

Filter by asset — matches when sourceAsset OR destinationAsset equals this value

tokenstring
Example:usd1

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.

fromDatestring date-time
Example:2025-01-01T00:00:00.000Z

Inclusive lower bound on createdAt (ISO8601)

toDatestring date-time
Example:2025-12-31T23:59:59.999Z

Inclusive upper bound on createdAt (ISO8601)

pageNostring
Example:1

1-indexed page number; default 1

pageSizestring
Example:50

Page size; default 50, max 200

sortBy'createdAt'
Example:createdAt

Sort key; default createdAt

sortOrder'asc' | 'desc'
Example:desc

Sort direction; default desc

Response

OK

totalnumber required

Total number of orders matching the filter (not the page count)

pageNonumber required

Current 1-indexed page number

pageSizenumber required

Number of orders per page

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
}