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

> Retrieve a list of saved AI Finder filters. `provider` defaults to `LINKEDIN` for backward compatibility, but callers can opt into other providers as they gain saved-filter support.

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



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/saved-filters
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-filters:
    get:
      tags:
        - Saved Filters
      summary: Get saved filters
      description: >-
        Retrieve a list of saved AI Finder filters. `provider` defaults to
        `LINKEDIN` for backward compatibility, but callers can opt into other
        providers as they gain saved-filter support.

            > **Required scope:** `WORKSPACE_READ`
            >
            > **Rate limit:** 100 requests per minute
      parameters:
        - schema:
            type: string
            default: '1'
            description: Page number for pagination. Minimum value is 1. Defaults to 1.
          required: false
          description: Page number for pagination. Minimum value is 1. Defaults to 1.
          name: page
          in: query
        - schema:
            type: string
            default: '25'
            description: >-
              Number of items per page. Minimum is 1, maximum is 100. Defaults
              to 25.
          required: false
          description: >-
            Number of items per page. Minimum is 1, maximum is 100. Defaults to
            25.
          name: pageSize
          in: query
        - schema:
            type: string
            description: Search term to filter saved filters by name (case-insensitive).
          required: false
          description: Search term to filter saved filters by name (case-insensitive).
          name: search
          in: query
        - schema:
            type: string
            enum:
              - LINKEDIN
              - CRM_CONTACTS
              - CRM_COMPANIES
              - STORELEADS
              - CRUNCHBASE_COMPANIES
              - CRUNCHBASE_CONTACTS
              - CRUNCHBASE_INVESTORS
              - THEIRSTACK_TECHNOLOGY
              - THEIRSTACK_JOBS
              - GOOGLE_MAPS
            default: LINKEDIN
            description: >-
              Saved filter provider to query. Defaults to `LINKEDIN` so existing
              callers keep the current behavior unless they opt into another
              provider.
          required: false
          description: >-
            Saved filter provider to query. Defaults to `LINKEDIN` so existing
            callers keep the current behavior unless they opt into another
            provider.
          name: provider
          in: query
        - schema:
            type: string
            enum:
              - LEAD
              - COMPANY
            description: >-
              Optional saved filter entity type. If omitted, `LINKEDIN` defaults
              to `LEAD`; all other providers infer the matching entity type
              automatically.
          required: false
          description: >-
            Optional saved filter entity type. If omitted, `LINKEDIN` defaults
            to `LEAD`; all other providers infer the matching entity type
            automatically.
          name: type
          in: query
      responses:
        '200':
          description: Successful response with paginated saved filters
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Unique identifier for the saved filter
                        name:
                          type: string
                          description: Name of the saved filter
                        provider:
                          type: string
                          enum:
                            - LINKEDIN
                            - CRM_CONTACTS
                            - CRM_COMPANIES
                            - STORELEADS
                            - CRUNCHBASE_COMPANIES
                            - CRUNCHBASE_CONTACTS
                            - CRUNCHBASE_INVESTORS
                            - THEIRSTACK_TECHNOLOGY
                            - THEIRSTACK_JOBS
                            - GOOGLE_MAPS
                          description: Provider that owns this saved filter
                        type:
                          type: string
                          enum:
                            - LEAD
                            - COMPANY
                          description: Saved filter type (LEAD or COMPANY)
                        filters:
                          type: object
                          additionalProperties: {}
                          description: Provider-specific saved filter configuration.
                        keywords:
                          type:
                            - array
                            - 'null'
                          items:
                            type: string
                          description: Keywords associated with this filter
                        isShared:
                          type: boolean
                          description: Whether this filter is shared with the team
                        createdBy:
                          type: object
                          properties:
                            id:
                              type: number
                              description: ID of the user who created the filter
                            name:
                              type:
                                - string
                                - 'null'
                              description: Name of the user who created the filter
                          required:
                            - id
                            - name
                          description: User who created the saved filter
                        createdAt:
                          type: string
                          format: date-time
                          description: Date and time when the filter was created
                        updatedAt:
                          type: string
                          format: date-time
                          description: Date and time when the filter was last updated
                      required:
                        - id
                        - name
                        - provider
                        - type
                        - filters
                        - keywords
                        - isShared
                        - createdBy
                        - createdAt
                        - updatedAt
                  meta:
                    type: object
                    properties:
                      page:
                        type: number
                      pageSize:
                        type: number
                      total:
                        type: number
                    required:
                      - page
                      - pageSize
                      - total
                required:
                  - data
                  - meta
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````