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

# Get one saved search

> One saved search of either kind, with its filters in the language the matching search endpoint accepts — POST /prospects/search for `searchType: people`, POST /companies/search for `searchType: company`. `ignoredFilterKeys` names stored keys with no equivalent search field, which were dropped from `filters`. A search that is not yours is 404, identically to one that does not exist.

Errors:
- `404` `SAVED_SEARCH_NOT_FOUND` — No saved search of yours has that id.
- `422` `VALIDATION_FAILED` — The request failed the declared schema; `param` names the offending key and `message` quotes the rule it broke.
- `429` `RATE_LIMITED` — Per-token rate limit for this bucket exhausted; retry after the window in the RateLimit-Reset header.
- `500` `UNEXPECTED_ERROR` — The request failed inside the service; nothing was billed and the request_id identifies the failure.

Requires one of the following token scopes: search.



## OpenAPI

````yaml /openapi.json get /business/saved-searches/{savedSearchId}
openapi: 3.1.0
info:
  title: Fuse Business API
  version: 1.0.0
  description: >-
    External API for lists, campaigns, prospect search and contacts.
    Authenticate with your API token as HTTP Basic. All paths are under /api/v1.
servers:
  - url: https://api.tryfuse.ai/api/v1
    description: Production
security:
  - basicAuth: []
tags:
  - name: Lists
  - name: Custom columns
  - name: Smart columns
  - name: Exports
  - name: Campaigns
  - name: Knowledge hubs
  - name: Analytics
  - name: Website intent
  - name: Account
  - name: Prospect search
  - name: Campaign steps
  - name: Scheduled sends
  - name: Campaign templates
  - name: Agents
  - name: Research
  - name: Company search
  - name: Saved searches
  - name: Folders
  - name: Contacts
paths:
  /business/saved-searches/{savedSearchId}:
    get:
      tags:
        - Saved searches
      summary: Get one saved search
      description: >-
        One saved search of either kind, with its filters in the language the
        matching search endpoint accepts — POST /prospects/search for
        `searchType: people`, POST /companies/search for `searchType: company`.
        `ignoredFilterKeys` names stored keys with no equivalent search field,
        which were dropped from `filters`. A search that is not yours is 404,
        identically to one that does not exist.


        Errors:

        - `404` `SAVED_SEARCH_NOT_FOUND` — No saved search of yours has that id.

        - `422` `VALIDATION_FAILED` — The request failed the declared schema;
        `param` names the offending key and `message` quotes the rule it broke.

        - `429` `RATE_LIMITED` — Per-token rate limit for this bucket exhausted;
        retry after the window in the RateLimit-Reset header.

        - `500` `UNEXPECTED_ERROR` — The request failed inside the service;
        nothing was billed and the request_id identifies the failure.


        Requires one of the following token scopes: search.
      operationId: getSavedSearch
      parameters:
        - name: savedSearchId
          in: path
          required: true
          description: >-
            Id of the saved search (24-character hex ObjectId), as returned by
            GET /saved-searches.
          schema:
            type: string
            description: >-
              Id of the saved search (24-character hex ObjectId), as returned by
              GET /saved-searches.
      responses:
        '200':
          description: Success
          headers:
            RateLimit-Limit:
              schema:
                type: integer
              description: Requests permitted in the current window.
            RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            RateLimit-Reset:
              schema:
                type: integer
              description: Seconds until the current window resets.
          content:
            application/json:
              schema:
                type: object
                required:
                  - savedSearch
                properties:
                  savedSearch:
                    type: object
                    required:
                      - id
                      - title
                      - filters
                      - ignoredFilterKeys
                      - searchType
                      - createdAt
                      - updatedAt
                    properties:
                      id:
                        type: string
                      title:
                        type: string
                      filters:
                        type:
                          - object
                          - 'null'
                        additionalProperties: true
                        description: >-
                          Filters in the vocabulary of `searchType`; null only
                          when a stored people blob could not be translated at
                          all.
                      ignoredFilterKeys:
                        type: array
                        items:
                          type: string
                        description: >-
                          Stored keys with no equivalent search field, dropped
                          from `filters` (always empty for company searches).
                      searchType:
                        type: string
                        enum:
                          - people
                          - company
                      createdAt:
                        type:
                          - string
                          - 'null'
                        format: date-time
                      updatedAt:
                        type:
                          - string
                          - 'null'
                        format: date-time
              example:
                savedSearch:
                  id: 6a8de3161ea5e58766c32c88
                  title: CoStar Group CXOs (US)
                  createdAt: '2026-08-25T18:46:46.159Z'
                  updatedAt: '2026-08-25T18:46:46.159Z'
                  filters:
                    job_title_levels:
                      - status: include
                        value: cxo
                    location_country:
                      - status: include
                        value: united states
                    job_company_name:
                      - status: include
                        value: costar group
                  ignoredFilterKeys: []
                  searchType: people
        '400':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - basicAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            param:
              type:
                - string
                - 'null'
            doc_url:
              type:
                - string
                - 'null'
            request_id:
              type:
                - string
                - 'null'
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Your API token (`af_…`) as the Basic-auth username, with an empty
        password.

````