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

# Details

Returns the definition of a saved search, including its configured columns and sort order.

## Request

#### Path

<ParamField path="savedSearchId" type="string" required>
  Obfuscated savedSearchId returned by the overview endpoint.
</ParamField>

## Response

<ResponseField name="searchType" type="string">
  One of `COMPANY`, `LEGAL_ENTITY` or `EMPLOYEES`.
</ResponseField>

<ResponseField name="columns" type="string[]">
  The columns configured for this saved search.
</ResponseField>

<ResponseField name="sort" type="object">
  The sort order configured for this saved search.
</ResponseField>

<ResponseExample>
  ```json Response - 200 theme={null}
  {
      "data": {
          "savedSearchId": "774411",
          "name": "Belgian SaaS companies",
          "searchType": "COMPANY",
          "columns": ["name", "vatNumber", "website"],
          "sort": {
              "field": "name",
              "direction": "ASC"
          },
          "createdAt": "2026-05-20T08:45:00.000Z",
          "updatedAt": "2026-06-18T10:30:00.000Z"
      }
  }
  ```
</ResponseExample>
