Skip to main content
GET
/
fills
cURL
curl --request GET \
  --url https://gateway.architect.exchange/api/fills \
  --header 'Authorization: Bearer <token>'
{
  "fills": [
    {
      "fee": "<string>",
      "is_taker": true,
      "price": "<string>",
      "quantity": 1,
      "side": "B",
      "symbol": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "trade_id": "<string>",
      "user_id": "<string>",
      "order_id": "<string>",
      "realized_pnl": "<string>"
    }
  ],
  "limit": 1,
  "next_cursor": "<string>",
  "total_count": 1
}

Authorizations

Authorization
string
header
required

User session token

Query Parameters

symbol
string | null

Optional symbol filter. If provided, only fills for this symbol will be returned.

end_timestamp_ns
integer<int64> | null
Required range: x >= 0
start_timestamp_ns
integer<int64> | null
Required range: x >= 0
cursor
string | null
limit
integer<int32> | null
Required range: x >= 0
sort_ts
null | enum<string>

Timestamp sort direction (defaults to desc).

Available options:
asc,
desc

Response

200 - application/json

List of fills

Page metadata for cursor-paged responses.

This is intended for response bodies (not query params).

fills
object[]
required
limit
integer<int32> | null
Required range: x >= 0
next_cursor
string | null
total_count
integer<int64> | null
Required range: x >= 0