> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clustr-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Saved Views

> Your own views plus your workspace's shared ones

Every [saved view](/saved-views) you can see for one table: the ones you own,
plus the ones your workspace shares.

A view is a live filter, not a snapshot — see [Saved Views](/saved-views) for
what one is and how it drives a [Workflow](/workflows).

## Query Parameters

<ParamField query="entity" type="string">
  One of `people`, `accounts`, `connectors`. Omit to get every entity.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/saved-views?entity=accounts" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  views = requests.get(
      "https://api.clustr-ai.com/api/public/saved-views",
      headers={"Authorization": "Bearer YOUR_API_KEY"},
      params={"entity": "accounts"},
  ).json()["data"]["views"]
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "views": [
        {
          "id": "3e5f1a22-...",
          "tenant_id": "9d9c776d-...",
          "user_id": "a1b2c3d4-...",
          "entity": "accounts",
          "name": "Hot accounts",
          "filters": { "fit": ["A+", "A"], "temperature": ["burning"] },
          "is_shared": true,
          "is_pinned": true,
          "is_owner": true,
          "memberQuery": "fit=A%2B&fit=A&temperature=burning",
          "created_at": "2026-08-01T10:00:00Z",
          "updated_at": "2026-08-01T10:00:00Z"
        }
      ]
    }
  }
  ```
</ResponseExample>
