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

# Get Group Saved Views

> Returns all group-level saved views (filter presets) for the websites in a group. Group saved views capture filter state shared across the group rather than scoped to a single website.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/group-saved-views
openapi: 3.1.0
info:
  title: AthenaHQ API
  description: >-
    AthenaHQ API provides programmatic access to manage your websites and
    prompts for AI-powered content optimization.
  version: 1.0.0
  contact:
    email: support@athenahq.ai
servers:
  - url: https://api.athenahq.ai
    description: Production server
security:
  - apiKey: []
tags:
  - name: Basics
    description: Core API operations for managing websites and prompts
  - name: Metrics
    description: Metrics and analytics endpoints for tracking AI visibility
  - name: Billing
    description: Billing and credits endpoints for managing usage
  - name: Team Management
    description: Endpoints for managing team members and invitations
  - name: Groups
    description: Endpoints for managing groups of websites
  - name: Content
    description: >-
      Endpoints for accessing Content Hub data — tabs, tracked URLs, and per-URL
      prompt breakdowns.
  - name: Pitch Workspace
    description: >-
      Endpoints for accessing pitch workspace reports — org-scoped pitch runs
      with competitors, prompts, attributes, and aggregate metrics.
  - name: Knowledge Base
    description: >-
      Endpoints for reading the brand Knowledge Base — approved brand facts and
      the pillars that organize them.
paths:
  /api/v1/group-saved-views:
    get:
      tags:
        - Basics
      summary: Get Group Saved Views
      description: >-
        Returns all group-level saved views (filter presets) for the websites in
        a group. Group saved views capture filter state shared across the group
        rather than scoped to a single website.
      operationId: getGroupSavedViews
      parameters:
        - name: group_id
          in: query
          description: >-
            ID of the group to retrieve saved views for. Authorization runs
            against this group's org.
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Successful response with list of group saved views
          content:
            application/json:
              schema:
                type: object
                properties:
                  group_saved_views:
                    type: array
                    items:
                      $ref: '#/components/schemas/GroupSavedView'
                required:
                  - group_saved_views
        '400':
          description: Bad request - Invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - You don't have access to this website
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    GroupSavedView:
      type: object
      description: >-
        A group-level saved view (filter preset) shared across the websites in a
        group
      required:
        - id
        - name
        - icon
        - website_id
        - group_id
        - user_id
        - filters
        - created_at
        - created_by
      properties:
        id:
          type: string
          description: Unique identifier for the group saved view
        name:
          type: string
          description: Display name of the saved view
        icon:
          type: string
          description: Icon identifier (defaults to RiBarChartLine)
        website_id:
          type: string
          format: uuid
          description: The website this saved view was authored from
        group_id:
          type: string
          format: uuid
          nullable: true
          description: The group this saved view belongs to
        user_id:
          type: string
          nullable: true
          description: The user who created the saved view
        filters:
          type: object
          description: >-
            Group-scoped filter preset payload (models, prompt type, prompt
            status, variation, website ids, group prompt ids, locations,
            personas, prompt tags, target identifiers).
          additionalProperties: true
        created_at:
          type: string
          format: date-time
          description: Timestamp when the group saved view was created (UTC)
        updated_at:
          type: string
          format: date-time
          description: >-
            Timestamp when the group saved view was last updated (UTC).
            Optional.
        created_by:
          type: object
          nullable: true
          description: User who created the saved view
          required:
            - id
            - email
            - first_name
            - last_name
            - display_name
          properties:
            id:
              type: string
            email:
              type: string
              format: email
            first_name:
              type: string
              nullable: true
            last_name:
              type: string
              nullable: true
            display_name:
              type: string
    Error:
      type: object
      description: Error response object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message describing what went wrong
          example: Unauthorized
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. You can create one
        [here](https://app.athenahq.ai/organization?tab=api).

````