GET
/
api
/
v1
/
user
/
orders
curl --request GET \
  --url https://mainnetapiserver.logx.network/api/v1/user/orders \
  --header 'Broker-Id: <broker-id>' \
  --header 'Logx-Key: <logx-key>' \
  --header 'Logx-Secret: <logx-secret>'
{
  "orders": [
    {
      "orderId": 2407731,
      "productID": 3,
      "amountx18": "1742000000000000",
      "filledAmountx18": "0",
      "pricex18": "57400000000000000000000",
      "operation": "BUY",
      "orderType": "LIMIT"
    }
  ]
}

Headers

Logx-Key
string
required

API key for authenticating requests to the LogX Network.

Logx-Secret
string
required

API secret for securing requests to the LogX Network.

Broker-Id
string
required

Unique identifier for the broker.

Response

200 - application/json
User orders were retrieved successfully.
orders
object[]

A collection of orders placed by the user.