v3

latestOpenAPI 3.1.02026-07-3173143.7 KB
Flash

List orders

List Flash orders for a funder, most recent first. Returns up to pageSize orders per page; pass nextPageToken back as pageToken to fetch the next page.

get/orders

Query parameters

funderAddressstring required

Funder wallet address whose orders to list.

statusesstring

Comma-separated list of order statuses to filter by. When omitted, orders of every status are returned.

Example:ORDER_STATUS_FILLED,ORDER_STATUS_CANCELLED
pageSizeinteger

Number of orders to return. Defaults to 50; capped at 200.

pageTokenstring

Fetch the next page by passing the nextPageToken from your previous response. Leave it out to get the first page. Copy the value exactly as-is — it's not meant to be read or built by hand.

Response

Orders returned successfully

nextPageTokenstring nullable required

Cursor for the next page; null when there are no more orders.

Example response

{
  "orders": [
    {
      "trigger": {
        "notionalPrice": "1800",
        "crossPrice": "1800"
      },
      "brackets": [
        {
          "notionalPrice": "1800",
          "crossPrice": "1800"
        }
      ],
      "expiresAt": "2026-05-12T00:00:00Z"
    }
  ]
}