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

# klazify

> Website Categorization

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

## Tools

| Tool                                                                                  | Description                                                                                                     |
| ------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| [`klazify_categorize`](#klazify_categorize)                                           | Fetch full company profile including IAB categories, company data, logo, social media, and tech stack for a URL |
| [`klazify_get_domain_company`](#klazify_get_domain_company)                           | Fetch company information for a URL including name, description, and industry                                   |
| [`klazify_get_domain_expiration`](#klazify_get_domain_expiration)                     | Fetch domain registration and expiration date information for a URL                                             |
| [`klazify_get_domain_iab_categories`](#klazify_get_domain_iab_categories)             | Fetch IAB content taxonomy categories for a URL                                                                 |
| [`klazify_get_domain_logo`](#klazify_get_domain_logo)                                 | Fetch the logo URL for a given domain                                                                           |
| [`klazify_get_domain_social_media`](#klazify_get_domain_social_media)                 | Fetch social media profile links associated with a URL                                                          |
| [`klazify_get_domain_tech`](#klazify_get_domain_tech)                                 | Detect the technology stack used by a URL including frameworks, CMS, and analytics tools                        |
| [`klazify_get_domain_traffic_intelligence`](#klazify_get_domain_traffic_intelligence) | Fetch traffic intelligence data for a URL including estimated visits and traffic sources                        |
| [`klazify_get_similar_domains`](#klazify_get_similar_domains)                         | Find domains similar to a given URL based on content and category analysis                                      |
| [`klazify_real_time_categorization`](#klazify_real_time_categorization)               | Classify a URL in real time using machine learning and return IAB categories with confidence scores             |

***

## klazify\_categorize

Fetch full company profile including IAB categories, company data, logo, social media, and tech stack for a URL

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                       |
| --------- | ------ | -------- | ------- | --------------------------------------------------------------------------------- |
| `url`     | string | Yes      | —       | The URL or domain to analyze (e.g., "[https://example.com](https://example.com)") |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "url": {
        "type": "string",
        "description": "The URL or domain to analyze (e.g., \"https://example.com\")"
      }
    },
    "required": [
      "PCID",
      "url"
    ]
  }
  ```
</Expandable>

***

## klazify\_get\_domain\_company

Fetch company information for a URL including name, description, and industry

**Parameters:**

| Parameter | Type   | Required | Default | Description                               |
| --------- | ------ | -------- | ------- | ----------------------------------------- |
| `url`     | string | Yes      | —       | The URL or domain to get company data for |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "url": {
        "type": "string",
        "description": "The URL or domain to get company data for"
      }
    },
    "required": [
      "PCID",
      "url"
    ]
  }
  ```
</Expandable>

***

## klazify\_get\_domain\_expiration

Fetch domain registration and expiration date information for a URL

**Parameters:**

| Parameter | Type   | Required | Default | Description                               |
| --------- | ------ | -------- | ------- | ----------------------------------------- |
| `url`     | string | Yes      | —       | The URL or domain to check expiration for |

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

***

## klazify\_get\_domain\_iab\_categories

Fetch IAB content taxonomy categories for a URL

**Parameters:**

| Parameter | Type   | Required | Default | Description                                 |
| --------- | ------ | -------- | ------- | ------------------------------------------- |
| `url`     | string | Yes      | —       | The URL or domain to get IAB categories for |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "url": {
        "type": "string",
        "description": "The URL or domain to get IAB categories for"
      }
    },
    "required": [
      "PCID",
      "url"
    ]
  }
  ```
</Expandable>

***

## klazify\_get\_domain\_logo

Fetch the logo URL for a given domain

**Parameters:**

| Parameter | Type   | Required | Default | Description                           |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| `url`     | string | Yes      | —       | The URL or domain to get the logo for |

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

***

## klazify\_get\_domain\_social\_media

Fetch social media profile links associated with a URL

**Parameters:**

| Parameter | Type   | Required | Default | Description                                        |
| --------- | ------ | -------- | ------- | -------------------------------------------------- |
| `url`     | string | Yes      | —       | The URL or domain to get social media profiles for |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "url": {
        "type": "string",
        "description": "The URL or domain to get social media profiles for"
      }
    },
    "required": [
      "PCID",
      "url"
    ]
  }
  ```
</Expandable>

***

## klazify\_get\_domain\_tech

Detect the technology stack used by a URL including frameworks, CMS, and analytics tools

**Parameters:**

| Parameter | Type   | Required | Default | Description                                |
| --------- | ------ | -------- | ------- | ------------------------------------------ |
| `url`     | string | Yes      | —       | The URL or domain to detect tech stack for |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "url": {
        "type": "string",
        "description": "The URL or domain to detect tech stack for"
      }
    },
    "required": [
      "PCID",
      "url"
    ]
  }
  ```
</Expandable>

***

## klazify\_get\_domain\_traffic\_intelligence

Fetch traffic intelligence data for a URL including estimated visits and traffic sources

**Parameters:**

| Parameter | Type   | Required | Default | Description                                       |
| --------- | ------ | -------- | ------- | ------------------------------------------------- |
| `url`     | string | Yes      | —       | The URL or domain to get traffic intelligence for |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "url": {
        "type": "string",
        "description": "The URL or domain to get traffic intelligence for"
      }
    },
    "required": [
      "PCID",
      "url"
    ]
  }
  ```
</Expandable>

***

## klazify\_get\_similar\_domains

Find domains similar to a given URL based on content and category analysis

**Parameters:**

| Parameter | Type   | Required | Default | Description                                   |
| --------- | ------ | -------- | ------- | --------------------------------------------- |
| `url`     | string | Yes      | —       | The URL or domain to find similar domains for |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "url": {
        "type": "string",
        "description": "The URL or domain to find similar domains for"
      }
    },
    "required": [
      "PCID",
      "url"
    ]
  }
  ```
</Expandable>

***

## klazify\_real\_time\_categorization

Classify a URL in real time using machine learning and return IAB categories with confidence scores

**Parameters:**

| Parameter | Type   | Required | Default | Description                                |
| --------- | ------ | -------- | ------- | ------------------------------------------ |
| `url`     | string | Yes      | —       | The URL or domain to classify in real time |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "url": {
        "type": "string",
        "description": "The URL or domain to classify in real time"
      }
    },
    "required": [
      "PCID",
      "url"
    ]
  }
  ```
</Expandable>
