> ## 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_watchlist

> Topics on the key owner's watchlist

Topics the key owner added to their watchlist, newest first, as the same topic
cards [`list_topics`](/mcp/tools/list-topics) returns.

**Scope**: `read` · **Annotations**: `readOnlyHint`
**REST equivalent**: `GET /open/v1/me/watchlist`

<Note>
  This surface is read-only for the watchlist: there is no tool to add or remove
  a topic. `get_topic` reports the current state as `is_watchlisted`.
</Note>

## Parameters

| Name       | Type                                     | Required | Default | Notes |
| ---------- | ---------------------------------------- | -------- | ------- | ----- |
| `cursor`   | string                                   |          | —       |       |
| `limit`    | integer ≤ 100                            |          | 20      |       |
| `language` | see [languages](/mcp/overview#languages) |          | `en`    |       |

## Returns

Captured live:

```json theme={null}
{
  "data": [
    {
      "id": "a3f21c48-6b19-4d7e-9c04-8e5b2f7a1d63",
      "title": "Will the Fed cut rates at the November 2026 meeting?",
      "status": "active",
      "mechanism": "v21_lmsr",
      "close_time": "2026-10-06T23:34:02.46058Z",
      "end_time": "2026-10-08T23:34:02.46058Z",
      "can_buy": true,
      "options": [
        {
          "id": "b1c0d9e8-4a72-4f31-95d6-0c1e7a83b402",
          "label": "Yes",
          "index": 0,
          "implied_price": "0.4988"
        },
        {
          "id": "c2d1e0f9-5b83-4a42-86e7-1d2f8b94c513",
          "label": "No",
          "index": 1,
          "implied_price": "0.5012"
        }
      ],
      "traders_count": 2,
      "comments_count": 2,
      "creator": {
        "id": "22222222-2222-4222-8222-222222222222",
        "nickname": "Mira Chen",
        "avatar_url": "https://cdn.seesaw.fun/avatars/20260901/mira.png",
        "url": "https://seesaw.fun/profile/22222222-2222-4222-8222-222222222222"
      },
      "my_option_ids": [
        "b1c0d9e8-4a72-4f31-95d6-0c1e7a83b402"
      ],
      "created_at": "2026-09-02T23:34:02.46058Z",
      "url": "https://seesaw.fun/topic/a3f21c48-6b19-4d7e-9c04-8e5b2f7a1d63"
    }
  ],
  "next_cursor": null,
  "has_more": false
}
```

## Example prompts

* "What's on my watchlist?"
* "Any of my watched topics closing soon?"

## Related

[`list_topics`](/mcp/tools/list-topics) ·
[`get_topic`](/mcp/tools/get-topic)
