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

> Opinions the key owner backed

Opinions the key owner spent coins to back, with their seat in the backing
relay and the sapphires received.

**Scope**: `read` · **Annotations**: `readOnlyHint`
**REST equivalent**: `GET /open/v1/me/backed-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

`my_seq` is the owner's 1-based seat in the relay and `new_backers_count` how
many arrived after them — payback only ever comes from the next backers, so a
seat with nobody behind it has received nothing.

Captured live:

```json theme={null}
{
  "data": [
    {
      "opinion_id": "7c2900c1-595f-4d92-bcf0-d84eba321ee2",
      "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": "Disagree. Two governors have signalled they want another quarter of data before moving, and November is early.",
      "side_option": {
        "label": "No",
        "index": 1,
        "current_price": "0.5012"
      },
      "backed_at": "2026-09-08T23:35:42.816846Z",
      "my_seq": 1,
      "my_price_coins": "1.0000",
      "backer_count": 1,
      "new_backers_count": 0,
      "sapphire_payback": "0.0000"
    }
  ],
  "next_cursor": null,
  "has_more": false,
  "stats": {
    "opinion_count": 1,
    "sapphire_total": "0.0000"
  }
}
```

## Example prompts

* "Which opinions have I backed?"
* "Did anyone back the same opinion after me?"

## Related

[`list_my_opinions`](/mcp/tools/list-my-opinions) ·
[`preview_back`](/mcp/tools/preview-back)
