v1

latestOpenAPI 3.0.02026-07-265081124.2 KB
Trading

User Orders

Get all orders placed by the authenticated user for a specific market

get/markets/{slug}/user-orders

Path parameters

slugstring required
Example:presidential-election-2024

Market slug identifier

Query parameters

statusesstring[]

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

limitnumber
Example:100

Maximum number of orders to return

Response

List of user orders for the market

Example response

{
  "orders": [
    {
      "id": "12345",
      "side": "BUY",
      "price": "0.75",
      "quantity": "100",
      "status": "LIVE"
    }
  ]
}