GET
/
v1
/
public
/
get_open_orders_by_instrument
curl --request GET \
  --url https://api.doppapp.com/v1/public/get_open_orders_by_instrument
[
  {
    "open_orders": [
      {
        "amount": 123,
        "amount_filled": 123,
        "base_currency": "<string>",
        "creation_timestamp": 123,
        "direction": "<string>",
        "instrument_id": "<string>",
        "instrument_name": "<string>",
        "order_id": 123,
        "order_state": "<string>",
        "price": 123,
        "wallet_address": "<string>"
      }
    ]
  }
]

Query Parameters

instrument_name
string
required
wallet_address
string
required
start_order_id
integer | null
end_order_id
integer | null
start_timestamp
integer | null
end_timestamp
integer | null
count
integer | null
sorting
string | null

Response

200 - application/json
Retrieves list of user's open orders.
open_orders
object[]
required