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

# Get saved view

> Retrieve a single saved view by ID.

    > **Required scope:** `WORKSPACE_READ`
    >
    > **Rate limit:** 100 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/saved-views/{savedViewId}
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/saved-views/{savedViewId}:
    get:
      tags:
        - Saved Views
      summary: Get saved view
      description: |-
        Retrieve a single saved view by ID.

            > **Required scope:** `WORKSPACE_READ`
            >
            > **Rate limit:** 100 requests per minute
      parameters:
        - schema:
            type: string
            description: The saved view ID
          required: true
          description: The saved view ID
          name: savedViewId
          in: path
      responses:
        '200':
          description: Successful response with saved view
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      id:
                        type: number
                        description: Unique identifier for the saved view
                      name:
                        type: string
                        description: Name of the saved view
                      type:
                        type: string
                        enum:
                          - LEAD
                          - COMPANY
                        description: View type (LEAD or COMPANY)
                      view:
                        type: array
                        items:
                          type: string
                        description: Saved view configuration (column keys)
                      createdBy:
                        type: object
                        properties:
                          id:
                            type: number
                            description: ID of the user who created the view
                          name:
                            type:
                              - string
                              - 'null'
                            description: Name of the user who created the view
                        required:
                          - id
                          - name
                      createdAt:
                        type: string
                        format: date-time
                        description: Date and time when the view was created
                      updatedAt:
                        type: string
                        format: date-time
                        description: Date and time when the view was last updated
                    required:
                      - id
                      - name
                      - type
                      - view
                      - createdBy
                      - createdAt
                      - updatedAt
                required:
                  - status
                  - message
                  - data
        '404':
          description: Saved view not found
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````