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

# Lookalikes

## Request

#### Header

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

#### Path

<ParamField path="countryCode" type="string" required>
  Any supported country code — see [Supported countries](/api-reference/v2/supported-countries).
</ParamField>

<ParamField path="companyId" type="string" required>
  Obfuscated companyId returned by the search 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

<ResponseField name="score" type="number">
  Company lookalike score. Lookalikes are sorted in descending order.
</ResponseField>

<Note>
  Offset is displayed in pagination response, but defaults to 0 due to dynamic scoring.
</Note>

<ResponseExample>
  ```json Response - 200 theme={null}
  {
      "identifier": {
          "countryCode": "BE",
          "companyId": "1778186251",
          "name": "Bizzy"
      },
      "data": {
          "lookalikes": [
              {
                  "companyId": {
                      "countryCode": "IT",
                      "companyId": "49748317533",
                      "name": "Bizzynow"
                  },
                  "score": 100.97023
              },
              {
                  "companyId": {
                      "countryCode": "GB",
                      "companyId": "50332067174",
                      "name": "Bizko Inc"
                  },
                  "score": 100.970215
              },
              {
                  "companyId": {
                      "countryCode": "GB",
                      "companyId": "50974991575",
                      "name": "E-horizon Systems"
                  },
                  "score": 100.97016
              },
              {
                  "companyId": {
                      "countryCode": "BE",
                      "companyId": "51222683020",
                      "name": "F.t.c."
                  },
                  "score": 100.96921
              }
          ]
      },
      "pagination": {
          "limit": 4,
          "offset": 0,
          "total": 10000
      }
  }
  ```
</ResponseExample>
