> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seesaw.fun/llms.txt
> Use this file to discover all available pages before exploring further.

# list_my_positions

> The key owner's open positions with cost, price, and unrealized P&L

The authenticated user's open positions in prediction markets — grouped by
topic, with average cost, current price, and unrealized P\&L per option held.

**REST equivalent**: `GET /open/v1/me/positions`

## Parameters

| Name               | Type | Default |
| ------------------ | ---- | ------- |
| `cursor` / `limit` |      | — / 20  |

## Returns

Captured live:

```json theme={null}
{
  "data": [
    {
      "topic": {
        "id": "dbf6297e-5217-4ad4-a8b9-2a390e2d17f2",
        "title": "Will gold exceed $4,000/oz on 2026-12-31?",
        "status": "closed",
        "end_time": "2026-07-04T05:04:29Z",
        "url": "https://seesaw.fun/topic/dbf6297e-5217-4ad4-a8b9-2a390e2d17f2"
      },
      "positions": [
        {
          "option_id": "43dd8c79-d282-4871-b865-dfbd017cd8d2",
          "option_name": "Yes",
          "shares": "2038.7419",
          "avg_price": "0.4833",
          "current_price": "0.7652",
          "profit_loss_percent": "54.6700",
          "sell_value": "1523.9200"
        }
      ]
    }
  ],
  "next_cursor": "bzoy",
  "has_more": true
}
```

Field notes:

* `profit_loss_percent` is a percentage string (`"54.6700"` = +54.67%,
  negatives are losses).
* `sell_value` is the estimated credits from selling the whole position now.
* One topic can carry multiple `positions` entries (both sides, or
  multi-option markets).
* For **settled** outcomes (realized P\&L), use
  [`list_my_settlements`](/mcp/tools/list-my-settlements) — this list is
  open positions only.

## Example prompts

* "How are my positions doing?"
* "Which of my open positions is deepest in the red, and what's the market's current view?"

## Related

[`list_my_settlements`](/mcp/tools/list-my-settlements) ·
[`get_my_profile`](/mcp/tools/get-my-profile) ·
[`get_topic`](/mcp/tools/get-topic)
