Skip to main content
POST
GetAllOrders

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Connect-Protocol-Version
enum<number>
default:1
required

Define the version of the Connect protocol. If omitted, use 1.

Available options:
1
Connect-Timeout-Ms
number

Define the timeout, in ms

Body

application/json
limit
integer

Maximum number of orders to return in this page. Defaults to 50 when omitted. Values above 1000 are capped to 1000 rather than rejected.

offset
integer

Number of matching orders to skip before collecting this page. Defaults to 0.

address
string | null

Optional wallet address filter, matched case-insensitively. When omitted, orders from every wallet are returned.

onlyOpen
boolean | null

Optional filter to active orders only: PENDING, PARTIALLY_FILLED, or PARTIALLY_MERGED. When omitted or false, orders in any status are returned.

Response

200 - application/json

Success

orders
Order · object[]

Matching orders for this page, ordered by timestamp descending (most recent first).

pagination
pagination · object

Effective limit/offset used for this query and the total number of matching orders across all pages.