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

> Topics created by the key owner, including moderation status

Topics the authenticated user created — the owner's view: items may carry
`moderation_status`, which **no other tool exposes**.

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

## Parameters

| Name               | Type                   | Default      |
| ------------------ | ---------------------- | ------------ |
| `type`             | `prediction` \| `poll` | `prediction` |
| `cursor` / `limit` |                        | — / 20       |

## Returns

The standard topic list shape plus `moderation_status`. Captured live
(trimmed):

```json theme={null}
{
  "data": [
    {
      "id": "9cef7a1a-235c-4aac-9715-cd3732ee75b5",
      "type": "prediction",
      "title": "Will the Nasdaq close up or down tomorrow?",
      "status": "open",
      "created_at": "2026-07-03T06:32:30Z",
      "end_time": "2026-07-10T15:59:00Z",
      "url": "https://seesaw.fun/topic/9cef7a1a-235c-4aac-9715-cd3732ee75b5",
      "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,
      "moderation_status": "approved"
    }
  ],
  "next_cursor": "bzoy",
  "has_more": true
}
```

<Note>
  A topic still in review (`moderation_status: "pending_review"`) appears
  here for its owner but is **not yet publicly visible** — public tools like
  `get_topic` return 404 for it until it's approved.
</Note>

## Example prompts

* "List the markets I've created and how much volume each attracted."
* "Is my latest topic through review yet?"

## Related

[`list_user_topics`](/mcp/tools/list-user-topics) (public view) ·
[`get_topic`](/mcp/tools/get-topic)
