GET
/
users
/
{user_address}
/
filled_orders
curl --request GET \
  --url https://api-testnet.gte.xyz/v1/users/{user_address}/filled_orders
[
  {
    "orderId": "<string>",
    "marketAddress": "<string>",
    "side": "bid",
    "txnHash": "<string>",
    "filledAt": 123,
    "price": "<string>",
    "sizeFilled": "<string>"
  }
]

Path Parameters

user_address
string
required

EVM address

Query Parameters

market_address
string
required

EVM address

Response

200
application/json

List of user's filled orders

The response is of type object[].