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

> Opinions the key owner published

Opinions the key owner has published, with how many people backed each and the
sapphires it has brought in so far.

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

## Parameters

| Name       | Type                                     | Required | Default | Notes                                                 |
| ---------- | ---------------------------------------- | -------- | ------- | ----------------------------------------------------- |
| `range`    | `all` \| `month`                         |          | `all`   | `month` = the current calendar month (Hong Kong time) |
| `cursor`   | string                                   |          | —       |                                                       |
| `limit`    | integer ≤ 100                            |          | 20      |                                                       |
| `language` | see [languages](/mcp/overview#languages) |          | `en`    |                                                       |

## Returns

The envelope carries an extra `stats` object computed over the same filter the
list paginates.

Captured live:

```json theme={null}
{
  "data": [
    {
      "opinion_id": "b9931ee5-865e-4591-804a-86861adae8b1",
      "topic": {
        "id": "a3f21c48-6b19-4d7e-9c04-8e5b2f7a1d63",
        "title": "Will the Fed cut rates at the November 2026 meeting?",
        "url": "https://seesaw.fun/topic/a3f21c48-6b19-4d7e-9c04-8e5b2f7a1d63"
      },
      "content": "Core PCE has cooled for three straight prints and the labour market is loosening — a November cut looks more likely than the curve implies.",
      "side_option": {
        "label": "Yes",
        "index": 0,
        "current_price": "0.4988"
      },
      "backer_count": 0,
      "sapphire_payback": "0.0000",
      "created_at": "2026-09-08T23:34:35.298037Z"
    }
  ],
  "next_cursor": null,
  "has_more": false,
  "stats": {
    "opinion_count": 1,
    "sapphire_total": "0.0000"
  }
}
```

## Example prompts

* "What opinions have I posted this month?"
* "Which of my takes got the most backers?"

## Related

[`list_my_backed_opinions`](/mcp/tools/list-my-backed-opinions) ·
[`preview_opinion`](/mcp/tools/preview-opinion)
