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

> List topics created by a user (privacy-gated)

Topics created by a given user. Respects the target user's privacy settings.

**REST equivalent**: `GET /open/v1/users/{handle}/topics`

## Parameters

| Name               | Type                   | Required | Default      | Notes           |
| ------------------ | ---------------------- | -------- | ------------ | --------------- |
| `handle`           | string                 | ✅        | —            | Without the `@` |
| `type`             | `prediction` \| `poll` |          | `prediction` |                 |
| `cursor` / `limit` |                        |          | — / 20       |                 |

## Returns

The standard topic list (same item shape as
[`list_topics`](/mcp/tools/list-topics)) with one extra flag:

```json theme={null}
{
  "data": [
    {
      "id": "9cef7a1a-235c-4aac-9715-cd3732ee75b5",
      "type": "prediction",
      "title": "Will the Nasdaq close up or down tomorrow?",
      "status": "open",
      "options": [
        { "id": "4d995c85-e5c6-4048-989d-e177442db219", "name": "Yes", "probability": "0.7995", "is_winner": false },
        { "id": "d502b13a-64f6-4951-8029-b84d59019ce5", "name": "No", "probability": "0.2005", "is_winner": false }
      ],
      "total_volume": "112551.8486",
      "traders_count": 104,
      "url": "https://seesaw.fun/topic/9cef7a1a-235c-4aac-9715-cd3732ee75b5"
    }
  ],
  "next_cursor": "bzoy",
  "has_more": true,
  "hidden": false
}
```

<Note>
  When the user hides their created list, `data` is empty and **`hidden` is
  `true`** — an empty list with `hidden: false` really is empty. Tell the two
  apart before concluding "this user created nothing".
</Note>

## Example prompts

* "What markets has @abai created?"
* "Show me the polls created by the top creator on the leaderboard."

## Related

[`get_user`](/mcp/tools/get-user) ·
[`list_topics`](/mcp/tools/list-topics)
