---
title: "Get Saved Views"
method: GET
path: "/api/v1/saved-views"
tags: ["Basics"]
---

# Get Saved Views

`GET /api/v1/saved-views`

Returns all saved views (filter presets) for a specific website. Each saved view captures a named set of filters that can be reused across the dashboard.

## Query parameters

- `website_id` string, uuid, required

## Response `200`

Successful response with list of saved views

- object
  - `saved_views` SavedView[], required
    - `id` string, required — Unique identifier for the saved view
    - `name` string, required — Display name of the saved view
    - `icon` string, nullable, required — Optional icon identifier
    - `website_id` string, uuid, required — The website this saved view belongs to
    - `user_id` string, nullable, required — The ID of the user who created the saved view. Null when the view was created via the API (api-key sessions carry no user identity); such views can only be edited or deleted by website admins.
    - `filters` object, required — Filter preset payload. Shape mirrors the dashboard filter state.
    - `created_at` string, date-time, nullable, required — Timestamp when the saved view was created (UTC)
    - `updated_at` string, date-time, nullable, required — Timestamp when the saved view was last updated (UTC)
    - `created_by` object, nullable, required — User who created the saved view
      - `id` string, required — User ID
      - `email` string, email, required — User email
      - `first_name` string, nullable, required — User first name
      - `last_name` string, nullable, required — User last name
      - `display_name` string, required — Computed display name (full name when available, otherwise email)

## Other responses

- `400` — Bad request - Invalid parameters
- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - You don't have access to this website
- `500` — Internal server error

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/versions/6c5d71622cb9/schema)
