Skip to main content
GET
/
markets
/
{slug}
/
user-orders
User Orders
curl --request GET \
  --url https://api.limitless.exchange/markets/{slug}/user-orders \
  --cookie limitless_session=
{
  "orders": [
    {
      "id": "12345",
      "side": "BUY",
      "price": "0.75",
      "quantity": "100",
      "status": "LIVE"
    }
  ]
}

Authorizations

limitless_session
string
cookie
required

Session authentication cookie obtained from /auth/login

Path Parameters

Query Parameters

statuses
enum<string>[]

Order status(es) to filter by. Defaults to [LIVE] if not provided

Available options:
LIVE,
MATCHED
limit
number

Maximum number of orders to return

Required range: x >= 1
Example:

100

Response

200 - application/json

List of user orders for the market

orders
object[]