Profiles

My Orders

GET
/api/v1/me/orders
Returns the authenticated wallet's prediction-market order book entries (limit orders the wallet has listed), with optional status / market / outcome filters and standard offset pagination.
Auth: Session or API Key

Query params: status (ACTIVE/FILLED/CANCELLED), marketToken (0x… — narrow to one market), outcomeId (integer — narrow to one outcome), page (default 1), limit (default 20, max 100).

Response
{
  "data": [
    {
      "id": "clxyz123abc",
      "orderId": 42,
      "marketToken": "0x1234...abcd",
      "seller": "0xabcd...1234",
      "outcomeId": 0,
      "amount": "100000000000000000000",
      "pricePerShare": "600000000000000000",
      "status": "ACTIVE",
      "createdAt": "2026-05-09T18:42:11.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "hasMore": false
  }
}

amount is shares listed; pricePerShare is USDB per share. Both 18-decimal strings.

200 Orders returned400 Invalid query parameter401 Not authenticated429 Rate limit exceeded