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

Path Parameters

user_address
string
required

EVM address

Query Parameters

market_address
string
required

EVM address

Response

200
application/json

List of user's open orders

The response is of type object[].