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

# Results

Executes the saved search against the latest data and returns a page of results. The shape
of each item in `data` depends on the saved search's `searchType` (`COMPANY`,
`LEGAL_ENTITY` or `EMPLOYEES`).

## Request

#### Header

<ParamField header="Accept-Language" type="string" default="EN">
  * NL: Dutch - FR: French - EN: English
</ParamField>

#### Path

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

#### Query

<ParamField query="limit" type="number" default="4">
  Number of items to return per page. (max 500)
</ParamField>

<ParamField query="offset" type="number" default="0">
  Number of items to skip.
</ParamField>

## Response

The `identifier` describes the saved search; `data` holds the matching entities.

<ResponseExample>
  ```json Response - 200 (COMPANY search) theme={null}
  {
      "identifier": {
          "savedSearchId": "774411",
          "name": "Belgian SaaS companies",
          "searchType": "COMPANY"
      },
      "data": [
          {
              "countryCode": "BE",
              "companyId": "1778186251",
              "name": "Bizzy"
          }
      ],
      "pagination": {
          "limit": 4,
          "offset": 0,
          "total": 128
      }
  }
  ```

  ```json Response - 200 (LEGAL_ENTITY search) theme={null}
  {
      "identifier": {
          "savedSearchId": "531166",
          "name": "Belgian legal entities",
          "searchType": "LEGAL_ENTITY"
      },
      "data": [
          {
              "legalEntityId": "998877",
              "countryCode": "BE",
              "name": "Bizzy NV",
              "isPrimary": true
          }
      ],
      "pagination": {
          "limit": 4,
          "offset": 0,
          "total": 3
      }
  }
  ```

  ```json Response - 200 (EMPLOYEES search) theme={null}
  {
      "identifier": {
          "savedSearchId": "882200",
          "name": "Belgian sales leaders",
          "searchType": "EMPLOYEES"
      },
      "data": [
          {
              "jobTitle": "CEO",
              "identifier": {
                  "contactId": "123456",
                  "firstName": "Jane",
                  "lastName": "Doe"
              },
              "company": {
                  "countryCode": "BE",
                  "companyId": "1778186251",
                  "name": "Bizzy"
              }
          }
      ],
      "pagination": {
          "limit": 4,
          "offset": 0,
          "total": 54
      }
  }
  ```
</ResponseExample>
