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

Authorizations

Authorization
string
header
required

User session token

Query Parameters

order_id
string
required

Strong type for Order IDs to prevent mixing with other string values

Order IDs are ULIDs with a prefix:

  • Regular orders: O-
  • Liquidation orders: L-

Response

200 - application/json

List of fills associated with an order ID

fills
object[]
required