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

# getprospect

> Getprospect Lead Generation

**Server path:** `/getprospect` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                                                          | Description                                        |
| --------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------- |
| [`getprospect_company_controller_create`](#getprospect_company_controller_create)                                                             | Create company                                     |
| [`getprospect_company_controller_delete`](#getprospect_company_controller_delete)                                                             | Delete company                                     |
| [`getprospect_company_controller_find_company_with_name`](#getprospect_company_controller_find_company_with_name)                             | Search companies                                   |
| [`getprospect_company_controller_get_company`](#getprospect_company_controller_get_company)                                                   | Get single company                                 |
| [`getprospect_company_controller_update`](#getprospect_company_controller_update)                                                             | Update company                                     |
| [`getprospect_contact_controller_add_companies_to_contact`](#getprospect_contact_controller_add_companies_to_contact)                         | Add companies to contact                           |
| [`getprospect_contact_controller_create`](#getprospect_contact_controller_create)                                                             | Create contact                                     |
| [`getprospect_contact_controller_delete`](#getprospect_contact_controller_delete)                                                             | Delete contact                                     |
| [`getprospect_contact_controller_get_contact`](#getprospect_contact_controller_get_contact)                                                   | Get single contact                                 |
| [`getprospect_contact_controller_search`](#getprospect_contact_controller_search)                                                             | Search contacts                                    |
| [`getprospect_contact_controller_update`](#getprospect_contact_controller_update)                                                             | Update contact                                     |
| [`getprospect_insights_controller_fast_search_contacts_and_companies`](#getprospect_insights_controller_fast_search_contacts_and_companies)   | Fast search through insight contacts and companies |
| [`getprospect_list_controller_add_contacts_to_list`](#getprospect_list_controller_add_contacts_to_list)                                       | Add contacts to list                               |
| [`getprospect_list_controller_create_list`](#getprospect_list_controller_create_list)                                                         | Create new list                                    |
| [`getprospect_list_controller_delete_lists`](#getprospect_list_controller_delete_lists)                                                       | Delete lists                                       |
| [`getprospect_list_controller_get_list_contacts`](#getprospect_list_controller_get_list_contacts)                                             | Get list contacts                                  |
| [`getprospect_list_controller_get_lists`](#getprospect_list_controller_get_lists)                                                             | Get lists                                          |
| [`getprospect_list_controller_get_lists_count`](#getprospect_list_controller_get_lists_count)                                                 | Get list size                                      |
| [`getprospect_list_controller_update_list`](#getprospect_list_controller_update_list)                                                         | Update list                                        |
| [`getprospect_properties_controller_find_all`](#getprospect_properties_controller_find_all)                                                   | Get all properties                                 |
| [`getprospect_public_api_company_enrich_v2controller_company_enrich`](#getprospect_public_api_company_enrich_v2controller_company_enrich)     | Company Enrich                                     |
| [`getprospect_public_api_email_controller_public_find_email`](#getprospect_public_api_email_controller_public_find_email)                     | Find Email                                         |
| [`getprospect_public_api_email_controller_public_lookup_email`](#getprospect_public_api_email_controller_public_lookup_email)                 | Lookup Email                                       |
| [`getprospect_public_api_email_controller_send_bounce_email`](#getprospect_public_api_email_controller_send_bounce_email)                     | Verify Email                                       |
| [`getprospect_public_api_email_v2controller_public_find_email`](#getprospect_public_api_email_v2controller_public_find_email)                 | Find Email                                         |
| [`getprospect_public_api_email_v2controller_verify_email`](#getprospect_public_api_email_v2controller_verify_email)                           | Verify Email                                       |
| [`getprospect_public_api_insights_controller_get_contact_by_linked_in`](#getprospect_public_api_insights_controller_get_contact_by_linked_in) | Search lead by LinkedIn link                       |
| [`getprospect_public_api_insights_controller_public_search_companies`](#getprospect_public_api_insights_controller_public_search_companies)   | Search companies                                   |
| [`getprospect_public_api_insights_controller_public_search_contacts`](#getprospect_public_api_insights_controller_public_search_contacts)     | Search leads                                       |

***

## getprospect\_company\_controller\_create

Create company

**Parameters:**

| Parameter    | Type      | Required | Default | Description          |
| ------------ | --------- | -------- | ------- | -------------------- |
| `properties` | object\[] | Yes      | —       | The properties value |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "properties": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "property": {
              "type": "string",
              "description": "The property value"
            },
            "value": {
              "type": "string",
              "description": "The value value"
            }
          },
          "required": [
            "property",
            "value"
          ]
        },
        "description": "The properties value"
      }
    },
    "required": [
      "PCID",
      "properties"
    ]
  }
  ```
</Expandable>

***

## getprospect\_company\_controller\_delete

Delete company

**Parameters:**

| Parameter   | Type   | Required | Default | Description |
| ----------- | ------ | -------- | ------- | ----------- |
| `companyId` | string | Yes      | —       | Company id  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "companyId": {
        "type": "string",
        "description": "Company id"
      }
    },
    "required": [
      "PCID",
      "companyId"
    ]
  }
  ```
</Expandable>

***

## getprospect\_company\_controller\_find\_company\_with\_name

Search companies

**Parameters:**

| Parameter | Type   | Required | Default | Description         |
| --------- | ------ | -------- | ------- | ------------------- |
| `name`    | string | No       | —       | Company name string |
| `limit`   | number | No       | —       | Query limit         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "name": {
        "type": "string",
        "description": "Company name string"
      },
      "limit": {
        "type": "number",
        "description": "Query limit"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## getprospect\_company\_controller\_get\_company

Get single company

**Parameters:**

| Parameter   | Type   | Required | Default | Description |
| ----------- | ------ | -------- | ------- | ----------- |
| `companyId` | string | Yes      | —       | Company id  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "companyId": {
        "type": "string",
        "description": "Company id"
      }
    },
    "required": [
      "PCID",
      "companyId"
    ]
  }
  ```
</Expandable>

***

## getprospect\_company\_controller\_update

Update company

**Parameters:**

| Parameter    | Type      | Required | Default | Description          |
| ------------ | --------- | -------- | ------- | -------------------- |
| `companyId`  | string    | Yes      | —       | Company id           |
| `properties` | object\[] | Yes      | —       | The properties value |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "companyId": {
        "type": "string",
        "description": "Company id"
      },
      "properties": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "property": {
              "type": "string",
              "description": "The property value"
            },
            "value": {
              "type": "string",
              "description": "The value value"
            }
          },
          "required": [
            "property",
            "value"
          ]
        },
        "description": "The properties value"
      }
    },
    "required": [
      "PCID",
      "companyId",
      "properties"
    ]
  }
  ```
</Expandable>

***

## getprospect\_contact\_controller\_add\_companies\_to\_contact

Add companies to contact

**Parameters:**

| Parameter   | Type      | Required | Default | Description         |
| ----------- | --------- | -------- | ------- | ------------------- |
| `contactId` | string    | Yes      | —       | Contact id          |
| `companies` | object\[] | Yes      | —       | The companies value |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "contactId": {
        "type": "string",
        "description": "Contact id"
      },
      "companies": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "companyId": {
              "type": "string",
              "description": "Company Id"
            },
            "email": {
              "type": "string",
              "description": "The email value"
            },
            "status": {
              "type": "string",
              "description": "The status value"
            },
            "position": {
              "type": "string",
              "description": "The position value"
            }
          },
          "required": [
            "companyId"
          ]
        },
        "description": "The companies value"
      }
    },
    "required": [
      "PCID",
      "contactId",
      "companies"
    ]
  }
  ```
</Expandable>

***

## getprospect\_contact\_controller\_create

Create contact

**Parameters:**

| Parameter       | Type      | Required | Default | Description          |
| --------------- | --------- | -------- | ------- | -------------------- |
| `listRelations` | string\[] | No       | —       | Array of list ids    |
| `properties`    | object\[] | Yes      | —       | The properties value |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "listRelations": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Array of list ids"
      },
      "properties": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "property": {
              "type": "string",
              "description": "The property value"
            },
            "value": {
              "type": "string",
              "description": "The value value"
            }
          },
          "required": [
            "property",
            "value"
          ]
        },
        "description": "The properties value"
      }
    },
    "required": [
      "PCID",
      "properties"
    ]
  }
  ```
</Expandable>

***

## getprospect\_contact\_controller\_delete

Delete contact

**Parameters:**

| Parameter   | Type   | Required | Default | Description |
| ----------- | ------ | -------- | ------- | ----------- |
| `contactId` | string | Yes      | —       | Contact id  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "contactId": {
        "type": "string",
        "description": "Contact id"
      }
    },
    "required": [
      "PCID",
      "contactId"
    ]
  }
  ```
</Expandable>

***

## getprospect\_contact\_controller\_get\_contact

Get single contact

**Parameters:**

| Parameter   | Type   | Required | Default | Description |
| ----------- | ------ | -------- | ------- | ----------- |
| `contactId` | string | Yes      | —       | Contact id  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "contactId": {
        "type": "string",
        "description": "Contact id"
      }
    },
    "required": [
      "PCID",
      "contactId"
    ]
  }
  ```
</Expandable>

***

## getprospect\_contact\_controller\_search

Search contacts

**Parameters:**

| Parameter          | Type      | Required | Default | Description                                                                                                                             |
| ------------------ | --------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| `includeCount`     | boolean   | No       | —       | includes the amount of the contacts. The value “true” can slow down the performance of the request. Default - false.                    |
| `pageSize`         | number    | No       | —       | how many records to return per page (default 10, max 500)                                                                               |
| `pageNumber`       | number    | No       | —       | an integer that allows you to paginate through the results (default 1)                                                                  |
| `sort`             | string    | No       | —       | a property to sort the contacts by                                                                                                      |
| `order`            | string    | No       | —       | can be ASC or DESC                                                                                                                      |
| `deleted`          | boolean   | No       | —       | Returns only deleted contacts if true. Default - false.                                                                                 |
| `filters`          | object\[] | No       | —       | The filters value                                                                                                                       |
| `includeRelations` | boolean   | No       | —       | Includes companies, owner and lists in each of contacts. The value “true” can slow down the performance of the request. Default - false |
| `includes`         | string\[] | No       | —       | Company fields(domain, name and etc.)                                                                                                   |
| `searchId`         | string    | No       | —       | Search Id                                                                                                                               |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "includeCount": {
        "type": "boolean",
        "description": "includes the amount of the contacts. The value “true” can slow down the performance of the request. Default - false."
      },
      "pageSize": {
        "type": "number",
        "description": "how many records to return per page (default 10, max 500)"
      },
      "pageNumber": {
        "type": "number",
        "description": "an integer that allows you to paginate through the results (default 1)"
      },
      "sort": {
        "type": "string",
        "description": "a property to sort the contacts by"
      },
      "order": {
        "type": "string",
        "description": "can be ASC or DESC",
        "enum": [
          "ASC",
          "DESC"
        ]
      },
      "deleted": {
        "type": "boolean",
        "description": "Returns only deleted contacts if true. Default - false."
      },
      "filters": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "operator": {
              "type": "string",
              "enum": [
                "EQ",
                "NEQ",
                "IS_NOT_EMPTY",
                "IS_EMPTY",
                "CONTAINS",
                "LT",
                "LTE",
                "GT",
                "GTE",
                "LIKE",
                "NOT_LIKE",
                "CONTAINS_ANY",
                "NOT_CONTAINS_ANY",
                "NOT_EXISTS"
              ],
              "description": "* EQ - equal to       * NEQ - not equal to       * LT - larger than       * LTE - larger than or equal to       * GT - greater than       * GTE - greater than or equal to"
            },
            "property": {
              "type": "string",
              "description": "The property value"
            },
            "value": {
              "type": "string",
              "description": "The value value"
            }
          },
          "required": [
            "property"
          ]
        },
        "description": "The filters value"
      },
      "includeRelations": {
        "type": "boolean",
        "description": "Includes companies, owner and lists in each of contacts. The value “true” can slow down the performance of the request. Default - false"
      },
      "includes": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Company fields(domain, name and etc.)"
      },
      "searchId": {
        "type": "string",
        "description": "Search Id"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## getprospect\_contact\_controller\_update

Update contact

**Parameters:**

| Parameter       | Type      | Required | Default | Description                         |
| --------------- | --------- | -------- | ------- | ----------------------------------- |
| `contactId`     | string    | Yes      | —       | Contact id                          |
| `listRelations` | string\[] | No       | —       | Array of list ids                   |
| `properties`    | object\[] | Yes      | —       | contact property you want to update |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "contactId": {
        "type": "string",
        "description": "Contact id"
      },
      "listRelations": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Array of list ids"
      },
      "properties": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "property": {
              "type": "string",
              "description": "The property value"
            },
            "value": {
              "type": "string",
              "description": "The value value"
            }
          },
          "required": [
            "property",
            "value"
          ]
        },
        "description": "contact property you want to update"
      }
    },
    "required": [
      "PCID",
      "contactId",
      "properties"
    ]
  }
  ```
</Expandable>

***

## getprospect\_insights\_controller\_fast\_search\_contacts\_and\_companies

Fast search through insight contacts and companies

**Parameters:**

| Parameter | Type      | Required | Default | Description       |
| --------- | --------- | -------- | ------- | ----------------- |
| `search`  | string    | Yes      | —       | The search value  |
| `filters` | object\[] | No       | —       | The filters value |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "search": {
        "type": "string",
        "description": "The search value"
      },
      "filters": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "property": {
              "type": "string",
              "enum": [
                "contact.name",
                "contact.updatedAt",
                "contact.linkedinUrl",
                "contact.location",
                "contact.countryCode",
                "company.name",
                "company.domain",
                "company.updatedAt",
                "company.position",
                "company.seniority",
                "company.industry",
                "company.size",
                "company.location",
                "company.countryCode",
                "company.keywords",
                "keywords"
              ],
              "description": "the filter to search the lead by"
            },
            "included": {
              "description": "the entered value will be included from the search results"
            },
            "excluded": {
              "description": "the entered value will be excluded in the search results"
            },
            "checkboxes": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "checkbox option values"
            }
          },
          "required": [
            "property",
            "included",
            "checkboxes"
          ]
        },
        "description": "The filters value"
      }
    },
    "required": [
      "PCID",
      "search"
    ]
  }
  ```
</Expandable>

***

## getprospect\_list\_controller\_add\_contacts\_to\_list

Add contacts to list

**Parameters:**

| Parameter     | Type      | Required | Default | Description  |
| ------------- | --------- | -------- | ------- | ------------ |
| `list`        | string    | Yes      | —       | List id      |
| `contactsIds` | string\[] | No       | —       | Contacts Ids |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "list": {
        "type": "string",
        "description": "List id"
      },
      "contactsIds": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Contacts Ids"
      }
    },
    "required": [
      "PCID",
      "list"
    ]
  }
  ```
</Expandable>

***

## getprospect\_list\_controller\_create\_list

Create new list

**Parameters:**

| Parameter | Type   | Required | Default | Description    |
| --------- | ------ | -------- | ------- | -------------- |
| `name`    | string | Yes      | —       | The name value |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "name": {
        "type": "string",
        "description": "The name value"
      }
    },
    "required": [
      "PCID",
      "name"
    ]
  }
  ```
</Expandable>

***

## getprospect\_list\_controller\_delete\_lists

Delete lists

**Parameters:**

| Parameter | Type      | Required | Default | Description                                                                                                                  |
| --------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------- |
| `listIds` | string\[] | Yes      | —       | Array of list ids. if payload is empty or its length equals zero, then all lists with status deleted will be removed forever |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "listIds": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Array of list ids. if payload is empty or its length equals zero, then all lists with status deleted will be removed forever"
      }
    },
    "required": [
      "PCID",
      "listIds"
    ]
  }
  ```
</Expandable>

***

## getprospect\_list\_controller\_get\_list\_contacts

Get list contacts

**Parameters:**

| Parameter    | Type   | Required | Default | Description                                                            |
| ------------ | ------ | -------- | ------- | ---------------------------------------------------------------------- |
| `list`       | string | Yes      | —       | list id                                                                |
| `pageSize`   | number | No       | —       | how many records to return per page (default 10, max 500)              |
| `pageNumber` | number | No       | —       | an integer that allows you to paginate through the results (default 1) |
| `sort`       | string | No       | —       | a property to sort the lists by                                        |
| `order`      | string | No       | —       | can be ASC or DESC                                                     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "list": {
        "type": "string",
        "description": "list id"
      },
      "pageSize": {
        "type": "number",
        "description": "how many records to return per page (default 10, max 500)"
      },
      "pageNumber": {
        "type": "number",
        "description": "an integer that allows you to paginate through the results (default 1)"
      },
      "sort": {
        "type": "string",
        "description": "a property to sort the lists by"
      },
      "order": {
        "type": "string",
        "description": "can be ASC or DESC",
        "enum": [
          "ASC",
          "DESC"
        ]
      }
    },
    "required": [
      "PCID",
      "list"
    ]
  }
  ```
</Expandable>

***

## getprospect\_list\_controller\_get\_lists

Get lists

**Parameters:**

| Parameter    | Type   | Required | Default | Description                                                            |
| ------------ | ------ | -------- | ------- | ---------------------------------------------------------------------- |
| `pageSize`   | number | No       | —       | how many records to return per page (default 10, max 500)              |
| `pageNumber` | number | No       | —       | an integer that allows you to paginate through the results (default 1) |
| `sort`       | string | No       | —       | a property to sort the lists by                                        |
| `order`      | string | No       | —       | can be ASC or DESC                                                     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "pageSize": {
        "type": "number",
        "description": "how many records to return per page (default 10, max 500)"
      },
      "pageNumber": {
        "type": "number",
        "description": "an integer that allows you to paginate through the results (default 1)"
      },
      "sort": {
        "type": "string",
        "description": "a property to sort the lists by"
      },
      "order": {
        "type": "string",
        "description": "can be ASC or DESC",
        "enum": [
          "ASC",
          "DESC"
        ]
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## getprospect\_list\_controller\_get\_lists\_count

Get list size

**Parameters:**

| Parameter | Type      | Required | Default | Description |
| --------- | --------- | -------- | ------- | ----------- |
| `listIds` | string\[] | Yes      | —       | List Ids    |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "listIds": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "List Ids"
      }
    },
    "required": [
      "PCID",
      "listIds"
    ]
  }
  ```
</Expandable>

***

## getprospect\_list\_controller\_update\_list

Update list

**Parameters:**

| Parameter | Type   | Required | Default | Description    |
| --------- | ------ | -------- | ------- | -------------- |
| `listId`  | string | Yes      | —       | List id        |
| `name`    | string | Yes      | —       | The name value |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "listId": {
        "type": "string",
        "description": "List id"
      },
      "name": {
        "type": "string",
        "description": "The name value"
      }
    },
    "required": [
      "PCID",
      "listId",
      "name"
    ]
  }
  ```
</Expandable>

***

## getprospect\_properties\_controller\_find\_all

Get all properties

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_company\_enrich\_v2controller\_company\_enrich

Company Enrich

**Parameters:**

| Parameter      | Type   | Required | Default | Description                                                                                                       |
| -------------- | ------ | -------- | ------- | ----------------------------------------------------------------------------------------------------------------- |
| `id`           | string | No       | —       | The internal company ID (ObjectId).                                                                               |
| `linkedin_id`  | number | No       | —       | The LinkedIn company ID (numeric).                                                                                |
| `linkedin_url` | string | No       | —       | The LinkedIn company URL (e.g. "[https://linkedin.com/company/deloitte](https://linkedin.com/company/deloitte)"). |
| `domain`       | string | No       | —       | The company domain (e.g. "getprospect.com").                                                                      |
| `name`         | string | No       | —       | The company name (e.g. "GetProspect").                                                                            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The internal company ID (ObjectId)."
      },
      "linkedin_id": {
        "type": "number",
        "description": "The LinkedIn company ID (numeric)."
      },
      "linkedin_url": {
        "type": "string",
        "description": "The LinkedIn company URL (e.g. \"https://linkedin.com/company/deloitte\")."
      },
      "domain": {
        "type": "string",
        "description": "The company domain (e.g. \"getprospect.com\")."
      },
      "name": {
        "type": "string",
        "description": "The company name (e.g. \"GetProspect\")."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_email\_controller\_public\_find\_email

Find Email

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                            |
| --------- | ------ | -------- | ------- | -------------------------------------------------------------------------------------- |
| `name`    | string | Yes      | —       | the contact’s full name (first name + last name).                                      |
| `company` | string | Yes      | —       | company name or domain. Company domain increases the chances to find an email address. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "name": {
        "type": "string",
        "description": "the contact’s full name (first name + last name)."
      },
      "company": {
        "type": "string",
        "description": "company name or domain. Company domain increases the chances to find an email address."
      }
    },
    "required": [
      "PCID",
      "name",
      "company"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_email\_controller\_public\_lookup\_email

Lookup Email

**Parameters:**

| Parameter | Type   | Required | Default | Description                          |
| --------- | ------ | -------- | ------- | ------------------------------------ |
| `email`   | string | Yes      | —       | the email address you want to lookup |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email": {
        "type": "string",
        "description": "the email address you want to lookup"
      }
    },
    "required": [
      "PCID",
      "email"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_email\_controller\_send\_bounce\_email

Verify Email

**Parameters:**

| Parameter | Type   | Required | Default | Description                          |
| --------- | ------ | -------- | ------- | ------------------------------------ |
| `email`   | string | Yes      | —       | the email address you want to verify |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email": {
        "type": "string",
        "description": "the email address you want to verify"
      }
    },
    "required": [
      "PCID",
      "email"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_email\_v2controller\_public\_find\_email

Find Email

**Parameters:**

| Parameter    | Type   | Required | Default | Description                                                                              |
| ------------ | ------ | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `full_name`  | string | No       | —       | The contact's full name (e.g. "Dmytro Shulha"). Use instead of first\_name + last\_name. |
| `first_name` | string | No       | —       | The contact's first name (e.g. "Dmytro"). Required if full\_name is not provided.        |
| `last_name`  | string | No       | —       | The contact's last name (e.g. "Shulha"). Required when first\_name is provided.          |
| `domain`     | string | No       | —       | The company domain (e.g. "getprospect.com"). Provides the best results.                  |
| `company`    | string | No       | —       | The company name (e.g. "GetProspect"). Used as a fallback when domain is not provided.   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "full_name": {
        "type": "string",
        "description": "The contact's full name (e.g. \"Dmytro Shulha\"). Use instead of first_name + last_name."
      },
      "first_name": {
        "type": "string",
        "description": "The contact's first name (e.g. \"Dmytro\"). Required if full_name is not provided."
      },
      "last_name": {
        "type": "string",
        "description": "The contact's last name (e.g. \"Shulha\"). Required when first_name is provided."
      },
      "domain": {
        "type": "string",
        "description": "The company domain (e.g. \"getprospect.com\"). Provides the best results."
      },
      "company": {
        "type": "string",
        "description": "The company name (e.g. \"GetProspect\"). Used as a fallback when domain is not provided."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_email\_v2controller\_verify\_email

Verify Email

**Parameters:**

| Parameter | Type   | Required | Default | Description                           |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| `email`   | string | Yes      | —       | The email address you want to verify. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email": {
        "type": "string",
        "description": "The email address you want to verify."
      }
    },
    "required": [
      "PCID",
      "email"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_insights\_controller\_get\_contact\_by\_linked\_in

Search lead by LinkedIn link

**Parameters:**

| Parameter     | Type   | Required | Default | Description                    |
| ------------- | ------ | -------- | ------- | ------------------------------ |
| `linkedinUrl` | string | Yes      | —       | contact’s LinkedIn profile URL |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "linkedinUrl": {
        "type": "string",
        "description": "contact’s LinkedIn profile URL"
      }
    },
    "required": [
      "PCID",
      "linkedinUrl"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_insights\_controller\_public\_search\_companies

Search companies

**Parameters:**

| Parameter     | Type   | Required | Default | Description                                                            |
| ------------- | ------ | -------- | ------- | ---------------------------------------------------------------------- |
| `pageSize`    | number | No       | —       | how many records to return per page (default 10, max 500)              |
| `pageNumber`  | number | No       | —       | an integer that allows you to paginate through the results (default 1) |
| `sort`        | string | No       | —       | a property to sort the companies by                                    |
| `order`       | string | No       | —       | can be ASC or DESC                                                     |
| `domain`      | object | No       | —       | The domain value                                                       |
| `employees`   | object | No       | —       | The employees value                                                    |
| `industry`    | object | No       | —       | The industry value                                                     |
| `keywords`    | object | No       | —       | The keywords value                                                     |
| `lastUpdated` | string | No       | —       | Last Updated                                                           |
| `location`    | object | No       | —       | The location value                                                     |
| `name`        | object | No       | —       | The name value                                                         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "pageSize": {
        "type": "number",
        "description": "how many records to return per page (default 10, max 500)"
      },
      "pageNumber": {
        "type": "number",
        "description": "an integer that allows you to paginate through the results (default 1)"
      },
      "sort": {
        "type": "string",
        "description": "a property to sort the companies by",
        "enum": [
          "id",
          "name",
          "domain",
          "size",
          "headquarters",
          "description",
          "postalCode",
          "location.region",
          "location.timezone",
          "location.location",
          "location.countryCode"
        ]
      },
      "order": {
        "type": "string",
        "description": "can be ASC or DESC",
        "enum": [
          "ASC",
          "DESC"
        ]
      },
      "domain": {
        "type": "object",
        "description": "The domain value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "employees": {
        "type": "object",
        "description": "The employees value",
        "properties": {
          "included": {
            "type": "string",
            "description": "The included value",
            "enum": [
              "1 - 10",
              "11 - 20",
              "21 - 50",
              "51 - 100",
              "101 - 200",
              "201 - 500",
              "501 - 1000",
              "1001 - 2000",
              "2001 - 5000",
              "5001 - 10000",
              "10000"
            ]
          }
        }
      },
      "industry": {
        "type": "object",
        "description": "The industry value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "Defense & Space Manufacturing",
                "Computer Networking Products",
                "Technology, Information & Internet",
                "Computer Hardware Manufacturing",
                "Software Development",
                "Law Practice",
                "Legal Services",
                "Business Consulting & Services",
                "Biotechnology Research",
                "Medical Practices",
                "Hospitals & Health Care",
                "Semiconductor Manufacturing",
                "Telecommunications",
                "Medical Equipment Manufacturing",
                "Retail Apparel & Fashion",
                "Personal Care Product Manufacturing",
                "Sporting Goods Manufacturing",
                "Tobacco Manufacturing",
                "Food & Beverage Retail",
                "Computers & Electronics Manufacturing",
                "Food & Beverage Manufacturing",
                "Manufacturing",
                "Furniture & Home Furnishings Manufacturing",
                "Retail",
                "Gambling Facilities & Casinos",
                "Entertainment Providers",
                "Pharmaceutical Manufacturing",
                "Veterinary Services",
                "Restaurants",
                "Spectator Sports",
                "Movies & Sound Recording",
                "Food & Beverage Services",
                "Broadcast Media Production & Distribution",
                "Museums, Historical Sites, & Zoos",
                "Performing Arts",
                "Recreational Facilities",
                "Insurance",
                "Banking",
                "Financial Services",
                "Real Estate",
                "Investment Banking",
                "Investment Management",
                "Wholesale Building Materials",
                "Architecture & Planning",
                "Construction",
                "Accounting",
                "Travel Arrangements",
                "Hospitality",
                "Motor Vehicle Manufacturing",
                "Chemical Manufacturing",
                "Machinery Manufacturing",
                "Mining",
                "Shipbuilding",
                "Utilities",
                "Oil, Gas, & Mining",
                "Textile Manufacturing",
                "Paper & Forest Product Manufacturing",
                "Railroad Equipment Manufacturing",
                "Farming",
                "Ranching",
                "Fisheries",
                "Dairy Product Manufacturing",
                "Education Administration Programs",
                "Research Services",
                "Primary & Secondary Education",
                "Higher Education",
                "Armed Forces",
                "Legislative Offices",
                "Administration of Justice",
                "Civil Engineering",
                "Aviation & Aerospace Component Manufacturing",
                "Public Safety",
                "Law Enforcement",
                "Marketing Services",
                "Newspaper Publishing",
                "Executive Offices",
                "Public Policy Offices",
                "Book & Periodical Publishing",
                "Printing Services",
                "Information Services",
                "Libraries",
                "Environmental Services",
                "Freight & Package Transportation",
                "Individual & Family Services",
                "Consumer Services",
                "Civic & Social Organizations",
                "Religious Institutions",
                "Warehousing & Storage",
                "Truck Transportation",
                "Airlines & Aviation",
                "Maritime Transportation",
                "IT Services & IT Consulting",
                "Market Research",
                "Public Relations & Communications Services",
                "Design Services",
                "Fundraising",
                "Writing & Editing",
                "Non-profit Organizations",
                "Professional Services",
                "Staffing & Recruiting",
                "Professional Training & Coaching",
                "Computer Games",
                "Translation & Localization",
                "Events Services",
                "International Affairs",
                "Government Administration",
                "Artists & Writers",
                "Appliances, Electrical, & Electronics Manufacturing",
                "Plastics Manufacturing",
                "Online Audio & Video Media",
                "Nanotechnology Research",
                "Transportation, Logistics, Supply Chain & Storage",
                "Musicians",
                "Computer & Network Security",
                "Outsourcing & Offshoring Consulting",
                "Security & Investigations",
                "Alternative Dispute Resolution",
                "Wireless Services",
                "Facilities Services",
                "Wellness & Fitness Services",
                "Alternative Medicine",
                "Animation & Post-production",
                "Media Production",
                "Philanthropic Fundraising Services",
                "Think Tanks",
                "Leasing Non-residential Real Estate",
                "Capital Markets",
                "Wholesale",
                "E-Learning Providers",
                "Wholesale Import & Export",
                "Industrial Machinery Manufacturing",
                "Photography",
                "Human Resources Services",
                "Retail Office Equipment",
                "Mental Health Care",
                "Graphic Design",
                "Wineries",
                "International Trade & Development",
                "Retail Luxury Goods & Jewelry",
                "Renewable Energy Power Generation",
                "Political Organizations",
                "Venture Capital & Private Equity Principals",
                "Horticulture",
                "Automation Machinery Manufacturing",
                "Mobile Gaming Apps",
                "Government Relations Services",
                "Packaging & Containers Manufacturing",
                "Glass, Ceramics & Concrete Manufacturing",
                "Advertising Services",
                "Space Research & Technology",
                "Engineering Services",
                "Sightseeing Transportation",
                "Retail Health & Personal Care Products",
                "Internet Publishing",
                "Retail Furniture & Home Furnishings",
                "Wholesale Appliances, Electrical, & Electronics",
                "Fabricated Metal Products",
                "Community Services",
                "Public Health",
                "Glass Product Manufacturing",
                "Residential Building Construction",
                "Movies, Videos, & Sound",
                "Beverage Manufacturing",
                "Retail Art Supplies",
                "Administrative & Support Services",
                "Services for Renewable Energy",
                "Data Security Software Products",
                "Industry Associations",
                "Oil & Gas",
                "Education",
                "Rubber Products Manufacturing",
                "Professional Organizations",
                "Blogs",
                "Vehicle Repair & Maintenance",
                "Health & Human Services",
                "Electronic & Precision Equipment Maintenance",
                "Wholesale Food & Beverage",
                "Retail Appliances, Electrical, & Electronic Equipment",
                "Sports Teams & Clubs",
                "Renewable Energy Equipment Manufacturing",
                "Bars, Taverns, & Nightclubs",
                "Interior Design",
                "Services for the Elderly & Disabled",
                "Mattress & Blinds Manufacturing",
                "Retail Groceries",
                "Electrical Equipment Manufacturing",
                "Loan Brokers",
                "Strategic Management Services",
                "Taxi & Limousine Services",
                "Hotels & Motels",
                "Water, Waste, Steam, & Air Conditioning Services",
                "Solar Electric Power Generation",
                "Business Intelligence Platforms",
                "Physical, Occupational & Speech Therapists",
                "Accommodation & Food Services",
                "Wholesale Luxury Goods & Jewelry",
                "Security Guards & Patrol Services",
                "Technology, Information & Media",
                "Conservation Programs",
                "IT System Data Services",
                "Holding Companies",
                "Internet News",
                "Retail Florists",
                "Operations Consulting",
                "Social Networking Platforms",
                "Electric Power Transmission, Control, & Distribution",
                "Wholesale Recyclable Materials",
                "Medical & Diagnostic Laboratories",
                "Apparel Manufacturing",
                "Business Content",
                "Repair & Maintenance",
                "Footwear Manufacturing",
                "Animal Feed Manufacturing",
                "Construction Hardware Manufacturing",
                "Building Structure & Exterior Contractors",
                "Sound Recording",
                "Paint, Coating, & Adhesive Manufacturing",
                "Blockchain Services",
                "Building Construction",
                "Dentists",
                "Wholesale Motor Vehicles & Parts",
                "Internet Marketplace Platforms",
                "Office Furniture & Fixtures Manufacturing",
                "Water Supply & Irrigation Systems",
                "Janitorial Services",
                "Sports & Recreation Instruction",
                "Online & Mail Order Retail",
                "Wholesale Drugs & Sundries",
                "Electric Power Generation",
                "Surveying & Mapping Services",
                "Language Schools",
                "Embedded Software Products",
                "Architectural & Structural Metal Manufacturing",
                "Mobile Computing Software Products",
                "Wholesale Apparel & Sewing Supplies",
                "Real Estate & Equipment Rental Services",
                "Dance Companies",
                "Rail Transportation",
                "Retail Art Dealers",
                "Insurance Agencies & Brokerages",
                "Abrasives & Nonmetallic Minerals Manufacturing",
                "Landscaping Services",
                "Retail Recyclable Materials & Used Merchandise",
                "IT System Design Services",
                "Technical & Vocational Training",
                "Home Health Care Services",
                "Environmental Quality Programs",
                "Executive Search Services",
                "Nonresidential Building Construction",
                "Community Development & Urban Planning",
                "Security Systems Services",
                "Agriculture, Construction, Mining Machinery Manufacturing",
                "Caterers",
                "Retail Motor Vehicles",
                "Air, Water, & Waste Program Management",
                "Pet Services",
                "Wood Product Manufacturing",
                "Commercial & Industrial Equipment Rental",
                "Media & Telecommunications",
                "HVAC & Refrigeration Equipment Manufacturing",
                "IT System Custom Software Development",
                "Retail Office Supplies & Gifts",
                "Data Infrastructure & Analytics",
                "Building Equipment Contractors",
                "Metal Treatments",
                "Wholesale Paper Products",
                "Highway, Street, & Bridge Construction",
                "Investment Advice",
                "Ground Passenger Transportation",
                "Mobile Food Services",
                "Robotics Engineering",
                "Motor Vehicle Parts Manufacturing",
                "Performing Arts & Spectator Sports",
                "Personal Care Services",
                "Fashion Accessories Manufacturing",
                "Distilleries",
                "Fine Arts Schools",
                "Household Appliance Manufacturing",
                "Waste Collection",
                "Household & Institutional Furniture Manufacturing",
                "Book Publishing",
                "Digital Accessibility Services",
                "Household Services",
                "Agricultural Chemical Manufacturing",
                "Optometrists",
                "Leasing Residential Real Estate",
                "IT System Operations & Maintenance",
                "Climate Data & Analytics",
                "Climate Technology Product Manufacturing",
                "Accessible Architecture & Design",
                "Baked Goods Manufacturing",
                "Public Assistance Programs",
                "Real Estate Agents & Brokers",
                "Periodical Publishing",
                "Office Administration",
                "Equipment Rental Services",
                "Building Finishing Contractors",
                "Measuring & Control Instrument Manufacturing",
                "Telecommunications Carriers",
                "Laundry & Drycleaning Services",
                "Claims Adjusting, Actuarial Services",
                "Fire Protection",
                "Military & International Affairs",
                "Economic Programs",
                "Wholesale Alcoholic Beverages",
                "Bed-&-Breakfasts, Hostels, Homestays",
                "Emergency & Relief Services",
                "Child Day Care Services",
                "Telephone Call Centers",
                "Courts of Law",
                "Robot Manufacturing",
                "Wholesale Metals & Minerals",
                "Wholesale Hardware, Plumbing, Heating Equipment",
                "Funds & Trusts",
                "Wholesale Machinery",
                "Plastics & Rubber Product Manufacturing",
                "IT System Testing & Evaluation",
                "Cosmetology & Barber Schools",
                "Theater Companies",
                "Electric Lighting Equipment Manufacturing",
                "Nuclear Electric Power Generation",
                "Retail Gasoline",
                "Primary Metal Manufacturing",
                "Engines & Power Transmission Equipment Manufacturing",
                "Collection Agencies",
                "Retail Pharmacies",
                "Utility System Construction",
                "Metal Ore Mining",
                "Radio & Television Broadcasting",
                "Golf Courses & Country Clubs",
                "Metalworking Machinery Manufacturing",
                "Urban Transit Services",
                "Specialty Trade Contractors",
                "Meat Products Manufacturing",
                "Commercial & Industrial Machinery Maintenance",
                "Desktop Computing Software Products",
                "Securities & Commodity Exchanges",
                "Chemical Raw Materials Manufacturing",
                "Farming, Ranching, Forestry",
                "Wholesale Chemical & Allied Products",
                "Reupholstery & Furniture Repair",
                "Commercial & Service Industry Machinery Manufacturing",
                "Communications Equipment Manufacturing",
                "Steam & Air-Conditioning Supply",
                "Oil & Coal Product Manufacturing",
                "Retail Books & Printed News",
                "Credit Intermediation",
                "Audio & Video Equipment Manufacturing",
                "Leather Product Manufacturing",
                "IT System Training & Support",
                "Waste Treatment & Disposal",
                "Trusts & Estates",
                "Soap & Cleaning Product Manufacturing",
                "Retail Building Materials & Garden Equipment",
                "Consumer Goods Rental",
                "Temporary Help Services",
                "Skiing Facilities",
                "Fruit & Vegetable Preserves Manufacturing",
                "Museums",
                "Retail Musical Instruments",
                "Flight Training",
                "School & Employee Bus Services",
                "Physicians",
                "Zoos & Botanical Gardens",
                "Geothermal Electric Power Generation",
                "Wholesale Petroleum & Petroleum Products",
                "Wholesale Furniture & Home Furnishings",
                "Wind Electric Power Generation",
                "Ambulance Services",
                "Smart Meter Manufacturing",
                "Housing & Community Development",
                "Breweries",
                "Personal & Laundry Services",
                "Forestry & Logging",
                "Chiropractors",
                "Accessible Hardware Manufacturing",
                "Regenerative Design",
                "Coal Mining",
                "Footwear & Leather Goods Repair",
                "Nursing Homes & Residential Care Facilities",
                "Transportation Programs",
                "Vocational Rehabilitation Services",
                "Amusement Parks & Arcades",
                "Satellite Telecommunications",
                "Transportation Equipment Manufacturing",
                "Hospitals",
                "Turned Products & Fastener Manufacturing",
                "Family Planning Centers",
                "Insurance Carriers",
                "Insurance & Employee Benefit Funds",
                "Wholesale Photography Equipment & Supplies",
                "Natural Gas Distribution",
                "Seafood Product Manufacturing",
                "Historical Sites",
                "Wholesale Computer Equipment",
                "Sugar & Confectionery Product Manufacturing",
                "Shuttles & Special Needs Transportation Services",
                "IT System Installation & Disposal",
                "Pipeline Transportation",
                "Wholesale Raw Farm Products",
                "Housing Programs",
                "Wholesale Footwear",
                "Correctional Institutions",
                "Interurban & Rural Bus Services",
                "Energy Technology",
                "Women's Handbag Manufacturing",
                "Nonmetallic Mineral Mining",
                "Racetracks",
                "Biomass Electric Power Generation",
                "Metal Valve, Ball, & Roller Manufacturing",
                "Sheet Music Publishing",
                "Cutlery & Handtool Manufacturing",
                "Circuses & Magic Shows",
                "Subdivision of Land",
                "Magnetic & Optical Media Manufacturing",
                "Natural Gas Extraction",
                "Alternative Fuel Vehicle Manufacturing",
                "Fossil Fuel Electric Power Generation",
                "Spring & Wire Product Manufacturing",
                "Boilers, Tanks, & Shipping Container Manufacturing",
                "Death Care Services",
                "Postal Services",
                "Hydroelectric Power Generation",
                "Pension Funds",
                "Utilities Administration",
                "Outpatient Care Centers",
                "Lime & Gypsum Products Manufacturing",
                "Public Works",
                "Clay & Refractory Products Manufacturing",
                "Ranching & Fisheries",
                "Oil Extraction",
                "Secretarial Schools",
                "Parts Distribution",
                "Funeral Services",
                "Fuel Cell Manufacturing",
                "Cable & Satellite Programming",
                "Savings Institutions",
                "Artificial Rubber & Synthetic Fiber Manufacturing"
              ]
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "Defense & Space Manufacturing",
                "Computer Networking Products",
                "Technology, Information & Internet",
                "Computer Hardware Manufacturing",
                "Software Development",
                "Law Practice",
                "Legal Services",
                "Business Consulting & Services",
                "Biotechnology Research",
                "Medical Practices",
                "Hospitals & Health Care",
                "Semiconductor Manufacturing",
                "Telecommunications",
                "Medical Equipment Manufacturing",
                "Retail Apparel & Fashion",
                "Personal Care Product Manufacturing",
                "Sporting Goods Manufacturing",
                "Tobacco Manufacturing",
                "Food & Beverage Retail",
                "Computers & Electronics Manufacturing",
                "Food & Beverage Manufacturing",
                "Manufacturing",
                "Furniture & Home Furnishings Manufacturing",
                "Retail",
                "Gambling Facilities & Casinos",
                "Entertainment Providers",
                "Pharmaceutical Manufacturing",
                "Veterinary Services",
                "Restaurants",
                "Spectator Sports",
                "Movies & Sound Recording",
                "Food & Beverage Services",
                "Broadcast Media Production & Distribution",
                "Museums, Historical Sites, & Zoos",
                "Performing Arts",
                "Recreational Facilities",
                "Insurance",
                "Banking",
                "Financial Services",
                "Real Estate",
                "Investment Banking",
                "Investment Management",
                "Wholesale Building Materials",
                "Architecture & Planning",
                "Construction",
                "Accounting",
                "Travel Arrangements",
                "Hospitality",
                "Motor Vehicle Manufacturing",
                "Chemical Manufacturing",
                "Machinery Manufacturing",
                "Mining",
                "Shipbuilding",
                "Utilities",
                "Oil, Gas, & Mining",
                "Textile Manufacturing",
                "Paper & Forest Product Manufacturing",
                "Railroad Equipment Manufacturing",
                "Farming",
                "Ranching",
                "Fisheries",
                "Dairy Product Manufacturing",
                "Education Administration Programs",
                "Research Services",
                "Primary & Secondary Education",
                "Higher Education",
                "Armed Forces",
                "Legislative Offices",
                "Administration of Justice",
                "Civil Engineering",
                "Aviation & Aerospace Component Manufacturing",
                "Public Safety",
                "Law Enforcement",
                "Marketing Services",
                "Newspaper Publishing",
                "Executive Offices",
                "Public Policy Offices",
                "Book & Periodical Publishing",
                "Printing Services",
                "Information Services",
                "Libraries",
                "Environmental Services",
                "Freight & Package Transportation",
                "Individual & Family Services",
                "Consumer Services",
                "Civic & Social Organizations",
                "Religious Institutions",
                "Warehousing & Storage",
                "Truck Transportation",
                "Airlines & Aviation",
                "Maritime Transportation",
                "IT Services & IT Consulting",
                "Market Research",
                "Public Relations & Communications Services",
                "Design Services",
                "Fundraising",
                "Writing & Editing",
                "Non-profit Organizations",
                "Professional Services",
                "Staffing & Recruiting",
                "Professional Training & Coaching",
                "Computer Games",
                "Translation & Localization",
                "Events Services",
                "International Affairs",
                "Government Administration",
                "Artists & Writers",
                "Appliances, Electrical, & Electronics Manufacturing",
                "Plastics Manufacturing",
                "Online Audio & Video Media",
                "Nanotechnology Research",
                "Transportation, Logistics, Supply Chain & Storage",
                "Musicians",
                "Computer & Network Security",
                "Outsourcing & Offshoring Consulting",
                "Security & Investigations",
                "Alternative Dispute Resolution",
                "Wireless Services",
                "Facilities Services",
                "Wellness & Fitness Services",
                "Alternative Medicine",
                "Animation & Post-production",
                "Media Production",
                "Philanthropic Fundraising Services",
                "Think Tanks",
                "Leasing Non-residential Real Estate",
                "Capital Markets",
                "Wholesale",
                "E-Learning Providers",
                "Wholesale Import & Export",
                "Industrial Machinery Manufacturing",
                "Photography",
                "Human Resources Services",
                "Retail Office Equipment",
                "Mental Health Care",
                "Graphic Design",
                "Wineries",
                "International Trade & Development",
                "Retail Luxury Goods & Jewelry",
                "Renewable Energy Power Generation",
                "Political Organizations",
                "Venture Capital & Private Equity Principals",
                "Horticulture",
                "Automation Machinery Manufacturing",
                "Mobile Gaming Apps",
                "Government Relations Services",
                "Packaging & Containers Manufacturing",
                "Glass, Ceramics & Concrete Manufacturing",
                "Advertising Services",
                "Space Research & Technology",
                "Engineering Services",
                "Sightseeing Transportation",
                "Retail Health & Personal Care Products",
                "Internet Publishing",
                "Retail Furniture & Home Furnishings",
                "Wholesale Appliances, Electrical, & Electronics",
                "Fabricated Metal Products",
                "Community Services",
                "Public Health",
                "Glass Product Manufacturing",
                "Residential Building Construction",
                "Movies, Videos, & Sound",
                "Beverage Manufacturing",
                "Retail Art Supplies",
                "Administrative & Support Services",
                "Services for Renewable Energy",
                "Data Security Software Products",
                "Industry Associations",
                "Oil & Gas",
                "Education",
                "Rubber Products Manufacturing",
                "Professional Organizations",
                "Blogs",
                "Vehicle Repair & Maintenance",
                "Health & Human Services",
                "Electronic & Precision Equipment Maintenance",
                "Wholesale Food & Beverage",
                "Retail Appliances, Electrical, & Electronic Equipment",
                "Sports Teams & Clubs",
                "Renewable Energy Equipment Manufacturing",
                "Bars, Taverns, & Nightclubs",
                "Interior Design",
                "Services for the Elderly & Disabled",
                "Mattress & Blinds Manufacturing",
                "Retail Groceries",
                "Electrical Equipment Manufacturing",
                "Loan Brokers",
                "Strategic Management Services",
                "Taxi & Limousine Services",
                "Hotels & Motels",
                "Water, Waste, Steam, & Air Conditioning Services",
                "Solar Electric Power Generation",
                "Business Intelligence Platforms",
                "Physical, Occupational & Speech Therapists",
                "Accommodation & Food Services",
                "Wholesale Luxury Goods & Jewelry",
                "Security Guards & Patrol Services",
                "Technology, Information & Media",
                "Conservation Programs",
                "IT System Data Services",
                "Holding Companies",
                "Internet News",
                "Retail Florists",
                "Operations Consulting",
                "Social Networking Platforms",
                "Electric Power Transmission, Control, & Distribution",
                "Wholesale Recyclable Materials",
                "Medical & Diagnostic Laboratories",
                "Apparel Manufacturing",
                "Business Content",
                "Repair & Maintenance",
                "Footwear Manufacturing",
                "Animal Feed Manufacturing",
                "Construction Hardware Manufacturing",
                "Building Structure & Exterior Contractors",
                "Sound Recording",
                "Paint, Coating, & Adhesive Manufacturing",
                "Blockchain Services",
                "Building Construction",
                "Dentists",
                "Wholesale Motor Vehicles & Parts",
                "Internet Marketplace Platforms",
                "Office Furniture & Fixtures Manufacturing",
                "Water Supply & Irrigation Systems",
                "Janitorial Services",
                "Sports & Recreation Instruction",
                "Online & Mail Order Retail",
                "Wholesale Drugs & Sundries",
                "Electric Power Generation",
                "Surveying & Mapping Services",
                "Language Schools",
                "Embedded Software Products",
                "Architectural & Structural Metal Manufacturing",
                "Mobile Computing Software Products",
                "Wholesale Apparel & Sewing Supplies",
                "Real Estate & Equipment Rental Services",
                "Dance Companies",
                "Rail Transportation",
                "Retail Art Dealers",
                "Insurance Agencies & Brokerages",
                "Abrasives & Nonmetallic Minerals Manufacturing",
                "Landscaping Services",
                "Retail Recyclable Materials & Used Merchandise",
                "IT System Design Services",
                "Technical & Vocational Training",
                "Home Health Care Services",
                "Environmental Quality Programs",
                "Executive Search Services",
                "Nonresidential Building Construction",
                "Community Development & Urban Planning",
                "Security Systems Services",
                "Agriculture, Construction, Mining Machinery Manufacturing",
                "Caterers",
                "Retail Motor Vehicles",
                "Air, Water, & Waste Program Management",
                "Pet Services",
                "Wood Product Manufacturing",
                "Commercial & Industrial Equipment Rental",
                "Media & Telecommunications",
                "HVAC & Refrigeration Equipment Manufacturing",
                "IT System Custom Software Development",
                "Retail Office Supplies & Gifts",
                "Data Infrastructure & Analytics",
                "Building Equipment Contractors",
                "Metal Treatments",
                "Wholesale Paper Products",
                "Highway, Street, & Bridge Construction",
                "Investment Advice",
                "Ground Passenger Transportation",
                "Mobile Food Services",
                "Robotics Engineering",
                "Motor Vehicle Parts Manufacturing",
                "Performing Arts & Spectator Sports",
                "Personal Care Services",
                "Fashion Accessories Manufacturing",
                "Distilleries",
                "Fine Arts Schools",
                "Household Appliance Manufacturing",
                "Waste Collection",
                "Household & Institutional Furniture Manufacturing",
                "Book Publishing",
                "Digital Accessibility Services",
                "Household Services",
                "Agricultural Chemical Manufacturing",
                "Optometrists",
                "Leasing Residential Real Estate",
                "IT System Operations & Maintenance",
                "Climate Data & Analytics",
                "Climate Technology Product Manufacturing",
                "Accessible Architecture & Design",
                "Baked Goods Manufacturing",
                "Public Assistance Programs",
                "Real Estate Agents & Brokers",
                "Periodical Publishing",
                "Office Administration",
                "Equipment Rental Services",
                "Building Finishing Contractors",
                "Measuring & Control Instrument Manufacturing",
                "Telecommunications Carriers",
                "Laundry & Drycleaning Services",
                "Claims Adjusting, Actuarial Services",
                "Fire Protection",
                "Military & International Affairs",
                "Economic Programs",
                "Wholesale Alcoholic Beverages",
                "Bed-&-Breakfasts, Hostels, Homestays",
                "Emergency & Relief Services",
                "Child Day Care Services",
                "Telephone Call Centers",
                "Courts of Law",
                "Robot Manufacturing",
                "Wholesale Metals & Minerals",
                "Wholesale Hardware, Plumbing, Heating Equipment",
                "Funds & Trusts",
                "Wholesale Machinery",
                "Plastics & Rubber Product Manufacturing",
                "IT System Testing & Evaluation",
                "Cosmetology & Barber Schools",
                "Theater Companies",
                "Electric Lighting Equipment Manufacturing",
                "Nuclear Electric Power Generation",
                "Retail Gasoline",
                "Primary Metal Manufacturing",
                "Engines & Power Transmission Equipment Manufacturing",
                "Collection Agencies",
                "Retail Pharmacies",
                "Utility System Construction",
                "Metal Ore Mining",
                "Radio & Television Broadcasting",
                "Golf Courses & Country Clubs",
                "Metalworking Machinery Manufacturing",
                "Urban Transit Services",
                "Specialty Trade Contractors",
                "Meat Products Manufacturing",
                "Commercial & Industrial Machinery Maintenance",
                "Desktop Computing Software Products",
                "Securities & Commodity Exchanges",
                "Chemical Raw Materials Manufacturing",
                "Farming, Ranching, Forestry",
                "Wholesale Chemical & Allied Products",
                "Reupholstery & Furniture Repair",
                "Commercial & Service Industry Machinery Manufacturing",
                "Communications Equipment Manufacturing",
                "Steam & Air-Conditioning Supply",
                "Oil & Coal Product Manufacturing",
                "Retail Books & Printed News",
                "Credit Intermediation",
                "Audio & Video Equipment Manufacturing",
                "Leather Product Manufacturing",
                "IT System Training & Support",
                "Waste Treatment & Disposal",
                "Trusts & Estates",
                "Soap & Cleaning Product Manufacturing",
                "Retail Building Materials & Garden Equipment",
                "Consumer Goods Rental",
                "Temporary Help Services",
                "Skiing Facilities",
                "Fruit & Vegetable Preserves Manufacturing",
                "Museums",
                "Retail Musical Instruments",
                "Flight Training",
                "School & Employee Bus Services",
                "Physicians",
                "Zoos & Botanical Gardens",
                "Geothermal Electric Power Generation",
                "Wholesale Petroleum & Petroleum Products",
                "Wholesale Furniture & Home Furnishings",
                "Wind Electric Power Generation",
                "Ambulance Services",
                "Smart Meter Manufacturing",
                "Housing & Community Development",
                "Breweries",
                "Personal & Laundry Services",
                "Forestry & Logging",
                "Chiropractors",
                "Accessible Hardware Manufacturing",
                "Regenerative Design",
                "Coal Mining",
                "Footwear & Leather Goods Repair",
                "Nursing Homes & Residential Care Facilities",
                "Transportation Programs",
                "Vocational Rehabilitation Services",
                "Amusement Parks & Arcades",
                "Satellite Telecommunications",
                "Transportation Equipment Manufacturing",
                "Hospitals",
                "Turned Products & Fastener Manufacturing",
                "Family Planning Centers",
                "Insurance Carriers",
                "Insurance & Employee Benefit Funds",
                "Wholesale Photography Equipment & Supplies",
                "Natural Gas Distribution",
                "Seafood Product Manufacturing",
                "Historical Sites",
                "Wholesale Computer Equipment",
                "Sugar & Confectionery Product Manufacturing",
                "Shuttles & Special Needs Transportation Services",
                "IT System Installation & Disposal",
                "Pipeline Transportation",
                "Wholesale Raw Farm Products",
                "Housing Programs",
                "Wholesale Footwear",
                "Correctional Institutions",
                "Interurban & Rural Bus Services",
                "Energy Technology",
                "Women's Handbag Manufacturing",
                "Nonmetallic Mineral Mining",
                "Racetracks",
                "Biomass Electric Power Generation",
                "Metal Valve, Ball, & Roller Manufacturing",
                "Sheet Music Publishing",
                "Cutlery & Handtool Manufacturing",
                "Circuses & Magic Shows",
                "Subdivision of Land",
                "Magnetic & Optical Media Manufacturing",
                "Natural Gas Extraction",
                "Alternative Fuel Vehicle Manufacturing",
                "Fossil Fuel Electric Power Generation",
                "Spring & Wire Product Manufacturing",
                "Boilers, Tanks, & Shipping Container Manufacturing",
                "Death Care Services",
                "Postal Services",
                "Hydroelectric Power Generation",
                "Pension Funds",
                "Utilities Administration",
                "Outpatient Care Centers",
                "Lime & Gypsum Products Manufacturing",
                "Public Works",
                "Clay & Refractory Products Manufacturing",
                "Ranching & Fisheries",
                "Oil Extraction",
                "Secretarial Schools",
                "Parts Distribution",
                "Funeral Services",
                "Fuel Cell Manufacturing",
                "Cable & Satellite Programming",
                "Savings Institutions",
                "Artificial Rubber & Synthetic Fiber Manufacturing"
              ]
            },
            "description": "The excluded value"
          }
        }
      },
      "keywords": {
        "type": "object",
        "description": "The keywords value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "lastUpdated": {
        "type": "string",
        "description": "Last Updated"
      },
      "location": {
        "type": "object",
        "description": "The location value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "name": {
        "type": "object",
        "description": "The name value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## getprospect\_public\_api\_insights\_controller\_public\_search\_contacts

Search leads

**Parameters:**

| Parameter      | Type   | Required | Default | Description                                                            |
| -------------- | ------ | -------- | ------- | ---------------------------------------------------------------------- |
| `pageSize`     | number | No       | —       | how many records to return per page (default 10, max 500)              |
| `pageNumber`   | number | No       | —       | an integer that allows you to paginate through the results (default 1) |
| `sort`         | string | No       | —       | a property to sort the leads by                                        |
| `order`        | string | No       | —       | can be ASC or DESC                                                     |
| `companyName`  | object | No       | —       | Company Name                                                           |
| `contactName`  | object | No       | —       | Contact Name                                                           |
| `domain`       | object | No       | —       | The domain value                                                       |
| `email`        | string | No       | —       | The email value                                                        |
| `employees`    | object | No       | —       | The employees value                                                    |
| `headquarters` | object | No       | —       | The headquarters value                                                 |
| `industry`     | object | No       | —       | The industry value                                                     |
| `jobTitle`     | object | No       | —       | Job Title                                                              |
| `keywords`     | object | No       | —       | The keywords value                                                     |
| `lastUpdated`  | string | No       | —       | Last Updated                                                           |
| `location`     | object | No       | —       | The location value                                                     |
| `seniority`    | object | No       | —       | The seniority value                                                    |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "pageSize": {
        "type": "number",
        "description": "how many records to return per page (default 10, max 500)"
      },
      "pageNumber": {
        "type": "number",
        "description": "an integer that allows you to paginate through the results (default 1)"
      },
      "sort": {
        "type": "string",
        "description": "a property to sort the leads by",
        "enum": [
          "id",
          "firstName",
          "lastName",
          "contactInfo",
          "summary",
          "geolocation.region",
          "geolocation.timezone",
          "geolocation.location",
          "geolocation.countryCode"
        ]
      },
      "order": {
        "type": "string",
        "description": "can be ASC or DESC",
        "enum": [
          "ASC",
          "DESC"
        ]
      },
      "companyName": {
        "type": "object",
        "description": "Company Name",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "contactName": {
        "type": "object",
        "description": "Contact Name",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "domain": {
        "type": "object",
        "description": "The domain value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "email": {
        "type": "string",
        "description": "The email value",
        "enum": [
          "all",
          "all_contacts"
        ]
      },
      "employees": {
        "type": "object",
        "description": "The employees value",
        "properties": {
          "included": {
            "type": "string",
            "description": "The included value",
            "enum": [
              "1 - 10",
              "11 - 20",
              "21 - 50",
              "51 - 100",
              "101 - 200",
              "201 - 500",
              "501 - 1000",
              "1001 - 2000",
              "2001 - 5000",
              "5001 - 10000",
              "10000"
            ]
          }
        }
      },
      "headquarters": {
        "type": "object",
        "description": "The headquarters value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "industry": {
        "type": "object",
        "description": "The industry value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "Defense & Space Manufacturing",
                "Computer Networking Products",
                "Technology, Information & Internet",
                "Computer Hardware Manufacturing",
                "Software Development",
                "Law Practice",
                "Legal Services",
                "Business Consulting & Services",
                "Biotechnology Research",
                "Medical Practices",
                "Hospitals & Health Care",
                "Semiconductor Manufacturing",
                "Telecommunications",
                "Medical Equipment Manufacturing",
                "Retail Apparel & Fashion",
                "Personal Care Product Manufacturing",
                "Sporting Goods Manufacturing",
                "Tobacco Manufacturing",
                "Food & Beverage Retail",
                "Computers & Electronics Manufacturing",
                "Food & Beverage Manufacturing",
                "Manufacturing",
                "Furniture & Home Furnishings Manufacturing",
                "Retail",
                "Gambling Facilities & Casinos",
                "Entertainment Providers",
                "Pharmaceutical Manufacturing",
                "Veterinary Services",
                "Restaurants",
                "Spectator Sports",
                "Movies & Sound Recording",
                "Food & Beverage Services",
                "Broadcast Media Production & Distribution",
                "Museums, Historical Sites, & Zoos",
                "Performing Arts",
                "Recreational Facilities",
                "Insurance",
                "Banking",
                "Financial Services",
                "Real Estate",
                "Investment Banking",
                "Investment Management",
                "Wholesale Building Materials",
                "Architecture & Planning",
                "Construction",
                "Accounting",
                "Travel Arrangements",
                "Hospitality",
                "Motor Vehicle Manufacturing",
                "Chemical Manufacturing",
                "Machinery Manufacturing",
                "Mining",
                "Shipbuilding",
                "Utilities",
                "Oil, Gas, & Mining",
                "Textile Manufacturing",
                "Paper & Forest Product Manufacturing",
                "Railroad Equipment Manufacturing",
                "Farming",
                "Ranching",
                "Fisheries",
                "Dairy Product Manufacturing",
                "Education Administration Programs",
                "Research Services",
                "Primary & Secondary Education",
                "Higher Education",
                "Armed Forces",
                "Legislative Offices",
                "Administration of Justice",
                "Civil Engineering",
                "Aviation & Aerospace Component Manufacturing",
                "Public Safety",
                "Law Enforcement",
                "Marketing Services",
                "Newspaper Publishing",
                "Executive Offices",
                "Public Policy Offices",
                "Book & Periodical Publishing",
                "Printing Services",
                "Information Services",
                "Libraries",
                "Environmental Services",
                "Freight & Package Transportation",
                "Individual & Family Services",
                "Consumer Services",
                "Civic & Social Organizations",
                "Religious Institutions",
                "Warehousing & Storage",
                "Truck Transportation",
                "Airlines & Aviation",
                "Maritime Transportation",
                "IT Services & IT Consulting",
                "Market Research",
                "Public Relations & Communications Services",
                "Design Services",
                "Fundraising",
                "Writing & Editing",
                "Non-profit Organizations",
                "Professional Services",
                "Staffing & Recruiting",
                "Professional Training & Coaching",
                "Computer Games",
                "Translation & Localization",
                "Events Services",
                "International Affairs",
                "Government Administration",
                "Artists & Writers",
                "Appliances, Electrical, & Electronics Manufacturing",
                "Plastics Manufacturing",
                "Online Audio & Video Media",
                "Nanotechnology Research",
                "Transportation, Logistics, Supply Chain & Storage",
                "Musicians",
                "Computer & Network Security",
                "Outsourcing & Offshoring Consulting",
                "Security & Investigations",
                "Alternative Dispute Resolution",
                "Wireless Services",
                "Facilities Services",
                "Wellness & Fitness Services",
                "Alternative Medicine",
                "Animation & Post-production",
                "Media Production",
                "Philanthropic Fundraising Services",
                "Think Tanks",
                "Leasing Non-residential Real Estate",
                "Capital Markets",
                "Wholesale",
                "E-Learning Providers",
                "Wholesale Import & Export",
                "Industrial Machinery Manufacturing",
                "Photography",
                "Human Resources Services",
                "Retail Office Equipment",
                "Mental Health Care",
                "Graphic Design",
                "Wineries",
                "International Trade & Development",
                "Retail Luxury Goods & Jewelry",
                "Renewable Energy Power Generation",
                "Political Organizations",
                "Venture Capital & Private Equity Principals",
                "Horticulture",
                "Automation Machinery Manufacturing",
                "Mobile Gaming Apps",
                "Government Relations Services",
                "Packaging & Containers Manufacturing",
                "Glass, Ceramics & Concrete Manufacturing",
                "Advertising Services",
                "Space Research & Technology",
                "Engineering Services",
                "Sightseeing Transportation",
                "Retail Health & Personal Care Products",
                "Internet Publishing",
                "Retail Furniture & Home Furnishings",
                "Wholesale Appliances, Electrical, & Electronics",
                "Fabricated Metal Products",
                "Community Services",
                "Public Health",
                "Glass Product Manufacturing",
                "Residential Building Construction",
                "Movies, Videos, & Sound",
                "Beverage Manufacturing",
                "Retail Art Supplies",
                "Administrative & Support Services",
                "Services for Renewable Energy",
                "Data Security Software Products",
                "Industry Associations",
                "Oil & Gas",
                "Education",
                "Rubber Products Manufacturing",
                "Professional Organizations",
                "Blogs",
                "Vehicle Repair & Maintenance",
                "Health & Human Services",
                "Electronic & Precision Equipment Maintenance",
                "Wholesale Food & Beverage",
                "Retail Appliances, Electrical, & Electronic Equipment",
                "Sports Teams & Clubs",
                "Renewable Energy Equipment Manufacturing",
                "Bars, Taverns, & Nightclubs",
                "Interior Design",
                "Services for the Elderly & Disabled",
                "Mattress & Blinds Manufacturing",
                "Retail Groceries",
                "Electrical Equipment Manufacturing",
                "Loan Brokers",
                "Strategic Management Services",
                "Taxi & Limousine Services",
                "Hotels & Motels",
                "Water, Waste, Steam, & Air Conditioning Services",
                "Solar Electric Power Generation",
                "Business Intelligence Platforms",
                "Physical, Occupational & Speech Therapists",
                "Accommodation & Food Services",
                "Wholesale Luxury Goods & Jewelry",
                "Security Guards & Patrol Services",
                "Technology, Information & Media",
                "Conservation Programs",
                "IT System Data Services",
                "Holding Companies",
                "Internet News",
                "Retail Florists",
                "Operations Consulting",
                "Social Networking Platforms",
                "Electric Power Transmission, Control, & Distribution",
                "Wholesale Recyclable Materials",
                "Medical & Diagnostic Laboratories",
                "Apparel Manufacturing",
                "Business Content",
                "Repair & Maintenance",
                "Footwear Manufacturing",
                "Animal Feed Manufacturing",
                "Construction Hardware Manufacturing",
                "Building Structure & Exterior Contractors",
                "Sound Recording",
                "Paint, Coating, & Adhesive Manufacturing",
                "Blockchain Services",
                "Building Construction",
                "Dentists",
                "Wholesale Motor Vehicles & Parts",
                "Internet Marketplace Platforms",
                "Office Furniture & Fixtures Manufacturing",
                "Water Supply & Irrigation Systems",
                "Janitorial Services",
                "Sports & Recreation Instruction",
                "Online & Mail Order Retail",
                "Wholesale Drugs & Sundries",
                "Electric Power Generation",
                "Surveying & Mapping Services",
                "Language Schools",
                "Embedded Software Products",
                "Architectural & Structural Metal Manufacturing",
                "Mobile Computing Software Products",
                "Wholesale Apparel & Sewing Supplies",
                "Real Estate & Equipment Rental Services",
                "Dance Companies",
                "Rail Transportation",
                "Retail Art Dealers",
                "Insurance Agencies & Brokerages",
                "Abrasives & Nonmetallic Minerals Manufacturing",
                "Landscaping Services",
                "Retail Recyclable Materials & Used Merchandise",
                "IT System Design Services",
                "Technical & Vocational Training",
                "Home Health Care Services",
                "Environmental Quality Programs",
                "Executive Search Services",
                "Nonresidential Building Construction",
                "Community Development & Urban Planning",
                "Security Systems Services",
                "Agriculture, Construction, Mining Machinery Manufacturing",
                "Caterers",
                "Retail Motor Vehicles",
                "Air, Water, & Waste Program Management",
                "Pet Services",
                "Wood Product Manufacturing",
                "Commercial & Industrial Equipment Rental",
                "Media & Telecommunications",
                "HVAC & Refrigeration Equipment Manufacturing",
                "IT System Custom Software Development",
                "Retail Office Supplies & Gifts",
                "Data Infrastructure & Analytics",
                "Building Equipment Contractors",
                "Metal Treatments",
                "Wholesale Paper Products",
                "Highway, Street, & Bridge Construction",
                "Investment Advice",
                "Ground Passenger Transportation",
                "Mobile Food Services",
                "Robotics Engineering",
                "Motor Vehicle Parts Manufacturing",
                "Performing Arts & Spectator Sports",
                "Personal Care Services",
                "Fashion Accessories Manufacturing",
                "Distilleries",
                "Fine Arts Schools",
                "Household Appliance Manufacturing",
                "Waste Collection",
                "Household & Institutional Furniture Manufacturing",
                "Book Publishing",
                "Digital Accessibility Services",
                "Household Services",
                "Agricultural Chemical Manufacturing",
                "Optometrists",
                "Leasing Residential Real Estate",
                "IT System Operations & Maintenance",
                "Climate Data & Analytics",
                "Climate Technology Product Manufacturing",
                "Accessible Architecture & Design",
                "Baked Goods Manufacturing",
                "Public Assistance Programs",
                "Real Estate Agents & Brokers",
                "Periodical Publishing",
                "Office Administration",
                "Equipment Rental Services",
                "Building Finishing Contractors",
                "Measuring & Control Instrument Manufacturing",
                "Telecommunications Carriers",
                "Laundry & Drycleaning Services",
                "Claims Adjusting, Actuarial Services",
                "Fire Protection",
                "Military & International Affairs",
                "Economic Programs",
                "Wholesale Alcoholic Beverages",
                "Bed-&-Breakfasts, Hostels, Homestays",
                "Emergency & Relief Services",
                "Child Day Care Services",
                "Telephone Call Centers",
                "Courts of Law",
                "Robot Manufacturing",
                "Wholesale Metals & Minerals",
                "Wholesale Hardware, Plumbing, Heating Equipment",
                "Funds & Trusts",
                "Wholesale Machinery",
                "Plastics & Rubber Product Manufacturing",
                "IT System Testing & Evaluation",
                "Cosmetology & Barber Schools",
                "Theater Companies",
                "Electric Lighting Equipment Manufacturing",
                "Nuclear Electric Power Generation",
                "Retail Gasoline",
                "Primary Metal Manufacturing",
                "Engines & Power Transmission Equipment Manufacturing",
                "Collection Agencies",
                "Retail Pharmacies",
                "Utility System Construction",
                "Metal Ore Mining",
                "Radio & Television Broadcasting",
                "Golf Courses & Country Clubs",
                "Metalworking Machinery Manufacturing",
                "Urban Transit Services",
                "Specialty Trade Contractors",
                "Meat Products Manufacturing",
                "Commercial & Industrial Machinery Maintenance",
                "Desktop Computing Software Products",
                "Securities & Commodity Exchanges",
                "Chemical Raw Materials Manufacturing",
                "Farming, Ranching, Forestry",
                "Wholesale Chemical & Allied Products",
                "Reupholstery & Furniture Repair",
                "Commercial & Service Industry Machinery Manufacturing",
                "Communications Equipment Manufacturing",
                "Steam & Air-Conditioning Supply",
                "Oil & Coal Product Manufacturing",
                "Retail Books & Printed News",
                "Credit Intermediation",
                "Audio & Video Equipment Manufacturing",
                "Leather Product Manufacturing",
                "IT System Training & Support",
                "Waste Treatment & Disposal",
                "Trusts & Estates",
                "Soap & Cleaning Product Manufacturing",
                "Retail Building Materials & Garden Equipment",
                "Consumer Goods Rental",
                "Temporary Help Services",
                "Skiing Facilities",
                "Fruit & Vegetable Preserves Manufacturing",
                "Museums",
                "Retail Musical Instruments",
                "Flight Training",
                "School & Employee Bus Services",
                "Physicians",
                "Zoos & Botanical Gardens",
                "Geothermal Electric Power Generation",
                "Wholesale Petroleum & Petroleum Products",
                "Wholesale Furniture & Home Furnishings",
                "Wind Electric Power Generation",
                "Ambulance Services",
                "Smart Meter Manufacturing",
                "Housing & Community Development",
                "Breweries",
                "Personal & Laundry Services",
                "Forestry & Logging",
                "Chiropractors",
                "Accessible Hardware Manufacturing",
                "Regenerative Design",
                "Coal Mining",
                "Footwear & Leather Goods Repair",
                "Nursing Homes & Residential Care Facilities",
                "Transportation Programs",
                "Vocational Rehabilitation Services",
                "Amusement Parks & Arcades",
                "Satellite Telecommunications",
                "Transportation Equipment Manufacturing",
                "Hospitals",
                "Turned Products & Fastener Manufacturing",
                "Family Planning Centers",
                "Insurance Carriers",
                "Insurance & Employee Benefit Funds",
                "Wholesale Photography Equipment & Supplies",
                "Natural Gas Distribution",
                "Seafood Product Manufacturing",
                "Historical Sites",
                "Wholesale Computer Equipment",
                "Sugar & Confectionery Product Manufacturing",
                "Shuttles & Special Needs Transportation Services",
                "IT System Installation & Disposal",
                "Pipeline Transportation",
                "Wholesale Raw Farm Products",
                "Housing Programs",
                "Wholesale Footwear",
                "Correctional Institutions",
                "Interurban & Rural Bus Services",
                "Energy Technology",
                "Women's Handbag Manufacturing",
                "Nonmetallic Mineral Mining",
                "Racetracks",
                "Biomass Electric Power Generation",
                "Metal Valve, Ball, & Roller Manufacturing",
                "Sheet Music Publishing",
                "Cutlery & Handtool Manufacturing",
                "Circuses & Magic Shows",
                "Subdivision of Land",
                "Magnetic & Optical Media Manufacturing",
                "Natural Gas Extraction",
                "Alternative Fuel Vehicle Manufacturing",
                "Fossil Fuel Electric Power Generation",
                "Spring & Wire Product Manufacturing",
                "Boilers, Tanks, & Shipping Container Manufacturing",
                "Death Care Services",
                "Postal Services",
                "Hydroelectric Power Generation",
                "Pension Funds",
                "Utilities Administration",
                "Outpatient Care Centers",
                "Lime & Gypsum Products Manufacturing",
                "Public Works",
                "Clay & Refractory Products Manufacturing",
                "Ranching & Fisheries",
                "Oil Extraction",
                "Secretarial Schools",
                "Parts Distribution",
                "Funeral Services",
                "Fuel Cell Manufacturing",
                "Cable & Satellite Programming",
                "Savings Institutions",
                "Artificial Rubber & Synthetic Fiber Manufacturing"
              ]
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": [
                "Defense & Space Manufacturing",
                "Computer Networking Products",
                "Technology, Information & Internet",
                "Computer Hardware Manufacturing",
                "Software Development",
                "Law Practice",
                "Legal Services",
                "Business Consulting & Services",
                "Biotechnology Research",
                "Medical Practices",
                "Hospitals & Health Care",
                "Semiconductor Manufacturing",
                "Telecommunications",
                "Medical Equipment Manufacturing",
                "Retail Apparel & Fashion",
                "Personal Care Product Manufacturing",
                "Sporting Goods Manufacturing",
                "Tobacco Manufacturing",
                "Food & Beverage Retail",
                "Computers & Electronics Manufacturing",
                "Food & Beverage Manufacturing",
                "Manufacturing",
                "Furniture & Home Furnishings Manufacturing",
                "Retail",
                "Gambling Facilities & Casinos",
                "Entertainment Providers",
                "Pharmaceutical Manufacturing",
                "Veterinary Services",
                "Restaurants",
                "Spectator Sports",
                "Movies & Sound Recording",
                "Food & Beverage Services",
                "Broadcast Media Production & Distribution",
                "Museums, Historical Sites, & Zoos",
                "Performing Arts",
                "Recreational Facilities",
                "Insurance",
                "Banking",
                "Financial Services",
                "Real Estate",
                "Investment Banking",
                "Investment Management",
                "Wholesale Building Materials",
                "Architecture & Planning",
                "Construction",
                "Accounting",
                "Travel Arrangements",
                "Hospitality",
                "Motor Vehicle Manufacturing",
                "Chemical Manufacturing",
                "Machinery Manufacturing",
                "Mining",
                "Shipbuilding",
                "Utilities",
                "Oil, Gas, & Mining",
                "Textile Manufacturing",
                "Paper & Forest Product Manufacturing",
                "Railroad Equipment Manufacturing",
                "Farming",
                "Ranching",
                "Fisheries",
                "Dairy Product Manufacturing",
                "Education Administration Programs",
                "Research Services",
                "Primary & Secondary Education",
                "Higher Education",
                "Armed Forces",
                "Legislative Offices",
                "Administration of Justice",
                "Civil Engineering",
                "Aviation & Aerospace Component Manufacturing",
                "Public Safety",
                "Law Enforcement",
                "Marketing Services",
                "Newspaper Publishing",
                "Executive Offices",
                "Public Policy Offices",
                "Book & Periodical Publishing",
                "Printing Services",
                "Information Services",
                "Libraries",
                "Environmental Services",
                "Freight & Package Transportation",
                "Individual & Family Services",
                "Consumer Services",
                "Civic & Social Organizations",
                "Religious Institutions",
                "Warehousing & Storage",
                "Truck Transportation",
                "Airlines & Aviation",
                "Maritime Transportation",
                "IT Services & IT Consulting",
                "Market Research",
                "Public Relations & Communications Services",
                "Design Services",
                "Fundraising",
                "Writing & Editing",
                "Non-profit Organizations",
                "Professional Services",
                "Staffing & Recruiting",
                "Professional Training & Coaching",
                "Computer Games",
                "Translation & Localization",
                "Events Services",
                "International Affairs",
                "Government Administration",
                "Artists & Writers",
                "Appliances, Electrical, & Electronics Manufacturing",
                "Plastics Manufacturing",
                "Online Audio & Video Media",
                "Nanotechnology Research",
                "Transportation, Logistics, Supply Chain & Storage",
                "Musicians",
                "Computer & Network Security",
                "Outsourcing & Offshoring Consulting",
                "Security & Investigations",
                "Alternative Dispute Resolution",
                "Wireless Services",
                "Facilities Services",
                "Wellness & Fitness Services",
                "Alternative Medicine",
                "Animation & Post-production",
                "Media Production",
                "Philanthropic Fundraising Services",
                "Think Tanks",
                "Leasing Non-residential Real Estate",
                "Capital Markets",
                "Wholesale",
                "E-Learning Providers",
                "Wholesale Import & Export",
                "Industrial Machinery Manufacturing",
                "Photography",
                "Human Resources Services",
                "Retail Office Equipment",
                "Mental Health Care",
                "Graphic Design",
                "Wineries",
                "International Trade & Development",
                "Retail Luxury Goods & Jewelry",
                "Renewable Energy Power Generation",
                "Political Organizations",
                "Venture Capital & Private Equity Principals",
                "Horticulture",
                "Automation Machinery Manufacturing",
                "Mobile Gaming Apps",
                "Government Relations Services",
                "Packaging & Containers Manufacturing",
                "Glass, Ceramics & Concrete Manufacturing",
                "Advertising Services",
                "Space Research & Technology",
                "Engineering Services",
                "Sightseeing Transportation",
                "Retail Health & Personal Care Products",
                "Internet Publishing",
                "Retail Furniture & Home Furnishings",
                "Wholesale Appliances, Electrical, & Electronics",
                "Fabricated Metal Products",
                "Community Services",
                "Public Health",
                "Glass Product Manufacturing",
                "Residential Building Construction",
                "Movies, Videos, & Sound",
                "Beverage Manufacturing",
                "Retail Art Supplies",
                "Administrative & Support Services",
                "Services for Renewable Energy",
                "Data Security Software Products",
                "Industry Associations",
                "Oil & Gas",
                "Education",
                "Rubber Products Manufacturing",
                "Professional Organizations",
                "Blogs",
                "Vehicle Repair & Maintenance",
                "Health & Human Services",
                "Electronic & Precision Equipment Maintenance",
                "Wholesale Food & Beverage",
                "Retail Appliances, Electrical, & Electronic Equipment",
                "Sports Teams & Clubs",
                "Renewable Energy Equipment Manufacturing",
                "Bars, Taverns, & Nightclubs",
                "Interior Design",
                "Services for the Elderly & Disabled",
                "Mattress & Blinds Manufacturing",
                "Retail Groceries",
                "Electrical Equipment Manufacturing",
                "Loan Brokers",
                "Strategic Management Services",
                "Taxi & Limousine Services",
                "Hotels & Motels",
                "Water, Waste, Steam, & Air Conditioning Services",
                "Solar Electric Power Generation",
                "Business Intelligence Platforms",
                "Physical, Occupational & Speech Therapists",
                "Accommodation & Food Services",
                "Wholesale Luxury Goods & Jewelry",
                "Security Guards & Patrol Services",
                "Technology, Information & Media",
                "Conservation Programs",
                "IT System Data Services",
                "Holding Companies",
                "Internet News",
                "Retail Florists",
                "Operations Consulting",
                "Social Networking Platforms",
                "Electric Power Transmission, Control, & Distribution",
                "Wholesale Recyclable Materials",
                "Medical & Diagnostic Laboratories",
                "Apparel Manufacturing",
                "Business Content",
                "Repair & Maintenance",
                "Footwear Manufacturing",
                "Animal Feed Manufacturing",
                "Construction Hardware Manufacturing",
                "Building Structure & Exterior Contractors",
                "Sound Recording",
                "Paint, Coating, & Adhesive Manufacturing",
                "Blockchain Services",
                "Building Construction",
                "Dentists",
                "Wholesale Motor Vehicles & Parts",
                "Internet Marketplace Platforms",
                "Office Furniture & Fixtures Manufacturing",
                "Water Supply & Irrigation Systems",
                "Janitorial Services",
                "Sports & Recreation Instruction",
                "Online & Mail Order Retail",
                "Wholesale Drugs & Sundries",
                "Electric Power Generation",
                "Surveying & Mapping Services",
                "Language Schools",
                "Embedded Software Products",
                "Architectural & Structural Metal Manufacturing",
                "Mobile Computing Software Products",
                "Wholesale Apparel & Sewing Supplies",
                "Real Estate & Equipment Rental Services",
                "Dance Companies",
                "Rail Transportation",
                "Retail Art Dealers",
                "Insurance Agencies & Brokerages",
                "Abrasives & Nonmetallic Minerals Manufacturing",
                "Landscaping Services",
                "Retail Recyclable Materials & Used Merchandise",
                "IT System Design Services",
                "Technical & Vocational Training",
                "Home Health Care Services",
                "Environmental Quality Programs",
                "Executive Search Services",
                "Nonresidential Building Construction",
                "Community Development & Urban Planning",
                "Security Systems Services",
                "Agriculture, Construction, Mining Machinery Manufacturing",
                "Caterers",
                "Retail Motor Vehicles",
                "Air, Water, & Waste Program Management",
                "Pet Services",
                "Wood Product Manufacturing",
                "Commercial & Industrial Equipment Rental",
                "Media & Telecommunications",
                "HVAC & Refrigeration Equipment Manufacturing",
                "IT System Custom Software Development",
                "Retail Office Supplies & Gifts",
                "Data Infrastructure & Analytics",
                "Building Equipment Contractors",
                "Metal Treatments",
                "Wholesale Paper Products",
                "Highway, Street, & Bridge Construction",
                "Investment Advice",
                "Ground Passenger Transportation",
                "Mobile Food Services",
                "Robotics Engineering",
                "Motor Vehicle Parts Manufacturing",
                "Performing Arts & Spectator Sports",
                "Personal Care Services",
                "Fashion Accessories Manufacturing",
                "Distilleries",
                "Fine Arts Schools",
                "Household Appliance Manufacturing",
                "Waste Collection",
                "Household & Institutional Furniture Manufacturing",
                "Book Publishing",
                "Digital Accessibility Services",
                "Household Services",
                "Agricultural Chemical Manufacturing",
                "Optometrists",
                "Leasing Residential Real Estate",
                "IT System Operations & Maintenance",
                "Climate Data & Analytics",
                "Climate Technology Product Manufacturing",
                "Accessible Architecture & Design",
                "Baked Goods Manufacturing",
                "Public Assistance Programs",
                "Real Estate Agents & Brokers",
                "Periodical Publishing",
                "Office Administration",
                "Equipment Rental Services",
                "Building Finishing Contractors",
                "Measuring & Control Instrument Manufacturing",
                "Telecommunications Carriers",
                "Laundry & Drycleaning Services",
                "Claims Adjusting, Actuarial Services",
                "Fire Protection",
                "Military & International Affairs",
                "Economic Programs",
                "Wholesale Alcoholic Beverages",
                "Bed-&-Breakfasts, Hostels, Homestays",
                "Emergency & Relief Services",
                "Child Day Care Services",
                "Telephone Call Centers",
                "Courts of Law",
                "Robot Manufacturing",
                "Wholesale Metals & Minerals",
                "Wholesale Hardware, Plumbing, Heating Equipment",
                "Funds & Trusts",
                "Wholesale Machinery",
                "Plastics & Rubber Product Manufacturing",
                "IT System Testing & Evaluation",
                "Cosmetology & Barber Schools",
                "Theater Companies",
                "Electric Lighting Equipment Manufacturing",
                "Nuclear Electric Power Generation",
                "Retail Gasoline",
                "Primary Metal Manufacturing",
                "Engines & Power Transmission Equipment Manufacturing",
                "Collection Agencies",
                "Retail Pharmacies",
                "Utility System Construction",
                "Metal Ore Mining",
                "Radio & Television Broadcasting",
                "Golf Courses & Country Clubs",
                "Metalworking Machinery Manufacturing",
                "Urban Transit Services",
                "Specialty Trade Contractors",
                "Meat Products Manufacturing",
                "Commercial & Industrial Machinery Maintenance",
                "Desktop Computing Software Products",
                "Securities & Commodity Exchanges",
                "Chemical Raw Materials Manufacturing",
                "Farming, Ranching, Forestry",
                "Wholesale Chemical & Allied Products",
                "Reupholstery & Furniture Repair",
                "Commercial & Service Industry Machinery Manufacturing",
                "Communications Equipment Manufacturing",
                "Steam & Air-Conditioning Supply",
                "Oil & Coal Product Manufacturing",
                "Retail Books & Printed News",
                "Credit Intermediation",
                "Audio & Video Equipment Manufacturing",
                "Leather Product Manufacturing",
                "IT System Training & Support",
                "Waste Treatment & Disposal",
                "Trusts & Estates",
                "Soap & Cleaning Product Manufacturing",
                "Retail Building Materials & Garden Equipment",
                "Consumer Goods Rental",
                "Temporary Help Services",
                "Skiing Facilities",
                "Fruit & Vegetable Preserves Manufacturing",
                "Museums",
                "Retail Musical Instruments",
                "Flight Training",
                "School & Employee Bus Services",
                "Physicians",
                "Zoos & Botanical Gardens",
                "Geothermal Electric Power Generation",
                "Wholesale Petroleum & Petroleum Products",
                "Wholesale Furniture & Home Furnishings",
                "Wind Electric Power Generation",
                "Ambulance Services",
                "Smart Meter Manufacturing",
                "Housing & Community Development",
                "Breweries",
                "Personal & Laundry Services",
                "Forestry & Logging",
                "Chiropractors",
                "Accessible Hardware Manufacturing",
                "Regenerative Design",
                "Coal Mining",
                "Footwear & Leather Goods Repair",
                "Nursing Homes & Residential Care Facilities",
                "Transportation Programs",
                "Vocational Rehabilitation Services",
                "Amusement Parks & Arcades",
                "Satellite Telecommunications",
                "Transportation Equipment Manufacturing",
                "Hospitals",
                "Turned Products & Fastener Manufacturing",
                "Family Planning Centers",
                "Insurance Carriers",
                "Insurance & Employee Benefit Funds",
                "Wholesale Photography Equipment & Supplies",
                "Natural Gas Distribution",
                "Seafood Product Manufacturing",
                "Historical Sites",
                "Wholesale Computer Equipment",
                "Sugar & Confectionery Product Manufacturing",
                "Shuttles & Special Needs Transportation Services",
                "IT System Installation & Disposal",
                "Pipeline Transportation",
                "Wholesale Raw Farm Products",
                "Housing Programs",
                "Wholesale Footwear",
                "Correctional Institutions",
                "Interurban & Rural Bus Services",
                "Energy Technology",
                "Women's Handbag Manufacturing",
                "Nonmetallic Mineral Mining",
                "Racetracks",
                "Biomass Electric Power Generation",
                "Metal Valve, Ball, & Roller Manufacturing",
                "Sheet Music Publishing",
                "Cutlery & Handtool Manufacturing",
                "Circuses & Magic Shows",
                "Subdivision of Land",
                "Magnetic & Optical Media Manufacturing",
                "Natural Gas Extraction",
                "Alternative Fuel Vehicle Manufacturing",
                "Fossil Fuel Electric Power Generation",
                "Spring & Wire Product Manufacturing",
                "Boilers, Tanks, & Shipping Container Manufacturing",
                "Death Care Services",
                "Postal Services",
                "Hydroelectric Power Generation",
                "Pension Funds",
                "Utilities Administration",
                "Outpatient Care Centers",
                "Lime & Gypsum Products Manufacturing",
                "Public Works",
                "Clay & Refractory Products Manufacturing",
                "Ranching & Fisheries",
                "Oil Extraction",
                "Secretarial Schools",
                "Parts Distribution",
                "Funeral Services",
                "Fuel Cell Manufacturing",
                "Cable & Satellite Programming",
                "Savings Institutions",
                "Artificial Rubber & Synthetic Fiber Manufacturing"
              ]
            },
            "description": "The excluded value"
          }
        }
      },
      "jobTitle": {
        "type": "object",
        "description": "Job Title",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "keywords": {
        "type": "object",
        "description": "The keywords value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "lastUpdated": {
        "type": "string",
        "description": "Last Updated"
      },
      "location": {
        "type": "object",
        "description": "The location value",
        "properties": {
          "included": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The included value"
          },
          "excluded": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The excluded value"
          }
        }
      },
      "seniority": {
        "type": "object",
        "description": "The seniority value",
        "properties": {
          "included": {
            "type": "string",
            "description": "The included value",
            "enum": [
              "Owner",
              "Partner",
              "Chief Officer",
              "VP",
              "Director",
              "Senior",
              "Manager",
              "Intern",
              "Unpaid"
            ]
          },
          "excluded": {
            "type": "string",
            "description": "The excluded value",
            "enum": [
              "Owner",
              "Partner",
              "Chief Officer",
              "VP",
              "Director",
              "Senior",
              "Manager",
              "Intern",
              "Unpaid"
            ]
          }
        }
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
