GET
/
v2
/
base
/
limitorders
List Base Limit Orders
curl --request GET \
  --url http://localhost:2400/v2/base/limitorders \
  --header 'Authorization: Bearer <token>'
[
  {
    "_id": "<string>",
    "UserID": "<string>",
    "mode": "<string>",
    "target": "<string>",
    "wallet": "<string>",
    "amount": 123,
    "price": 123,
    "orderCode": "<string>",
    "status": "Active",
    "createdAt": "2023-11-07T05:31:56Z",
    "SlotName": "<string>",
    "ColorTag": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Successful retrieval of limit orders.

The response is of type object[].