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

# Web Presence Check

> Verify and analyze a business's online presence and digital footprint

The web presence check response payload contains a comprehensive analysis of a business's online presence, including website verification and digital footprint. The check evaluates the authenticity and activity level of the business's web presence.

## Check ID

`kyb.web_presence_check`

## Response Structure

```typescript theme={null}
{
  type: "WebPresenceCheckResult";
  official_website_match: OfficialWebsiteMatch | null;
  other_webpages_matches: Array<OfficialWebsiteMatch> | null;
  passed: boolean;
}

type OfficialWebsiteMatch = {
  type: "OfficialWebsiteMatch";
  url: string | null;
  screenshot_url: string | null;
  title: string | null;
  visual_summary: string | null;
}
```

## Example Response

```json theme={null}
{
  "type": "WebPresenceCheckResult",
  "official_website_match": {
    "type": "OfficialWebsiteMatch",
    "url": "https://parcha.ai",
    "title": "Parcha Labs - AI-Powered Compliance Solutions",
    "visual_summary": "Professional business website with modern design, featuring product information, company details, and customer resources",
    "screenshot_url": "https://storage.googleapis.com/screenshots/parcha.ai.png"
  },
  "other_webpages_matches": [
    {
      "type": "OfficialWebsiteMatch",
      "url": "https://www.linkedin.com/company/parcha-ai",
      "title": "Parcha Labs | LinkedIn",
      "visual_summary": "Active corporate LinkedIn profile with regular company updates and industry insights",
      "screenshot_url": null
    },
    {
      "type": "OfficialWebsiteMatch",
      "url": "https://twitter.com/parchaHQ",
      "title": "Parcha (@parchaHQ) | Twitter",
      "visual_summary": "Verified business Twitter account with product announcements and industry news",
      "screenshot_url": null
    }
  ],
  "passed": true,
  "verification_data": {
    "website_analysis": {
      "source_1": {
        "text": "Official business website with comprehensive product information and regular updates",
        "source_id": "website_monitor",
        "analysis": "Website shows professional maintenance and active business operations"
      }
    },
    "web_presence": {
      "source_1": {
        "text": "Active presence across major business platforms with consistent branding",
        "source_id": "web_monitor",
        "analysis": "Digital footprint indicates legitimate and active business operations"
      }
    }
  }
}
```

## Response Fields

<ResponseField name="type" type="string">
  The type identifier for the response. Will be "WebPresenceCheckResult".
</ResponseField>

<ResponseField name="official_website_match" type="object | null">
  Information about the business's official website.

  <ResponseField name="type" type="string">
    The type identifier for the match. Will be "OfficialWebsiteMatch".
  </ResponseField>

  <ResponseField name="url" type="string | null">
    The URL of the official website.
  </ResponseField>

  <ResponseField name="title" type="string | null">
    The title of the website.
  </ResponseField>

  <ResponseField name="visual_summary" type="string | null">
    A description of the website's visual appearance and content.
  </ResponseField>

  <ResponseField name="screenshot_url" type="string | null">
    URL of a screenshot of the website, if available.
  </ResponseField>
</ResponseField>

<ResponseField name="other_webpages_matches" type="array | null">
  List of other web pages associated with the business.

  <ResponseField name="type" type="string">
    The type identifier for the match. Will be "OfficialWebsiteMatch".
  </ResponseField>

  <ResponseField name="url" type="string | null">
    The URL of the web page.
  </ResponseField>

  <ResponseField name="title" type="string | null">
    The title of the web page.
  </ResponseField>

  <ResponseField name="visual_summary" type="string | null">
    A description of the page's visual appearance and content.
  </ResponseField>

  <ResponseField name="screenshot_url" type="string | null">
    URL of a screenshot of the web page, if available.
  </ResponseField>
</ResponseField>

<ResponseField name="passed" type="boolean">
  Indicates whether the business has a legitimate and active web presence.
</ResponseField>

<ResponseField name="verification_data" type="object">
  Detailed findings from the web presence verification.

  <ResponseField name="website_analysis" type="object">
    Analysis of the business website.

    <ResponseField name="source_id" type="string">
      Identifier for the website analysis source.
    </ResponseField>

    <ResponseField name="text" type="string">
      Description of website activity and status.
    </ResponseField>

    <ResponseField name="analysis" type="string">
      Analysis of the website findings.
    </ResponseField>
  </ResponseField>

  <ResponseField name="web_presence" type="object">
    Analysis of overall web presence.

    <ResponseField name="source_id" type="string">
      Identifier for the web presence analysis source.
    </ResponseField>

    <ResponseField name="text" type="string">
      Description of web presence findings.
    </ResponseField>

    <ResponseField name="analysis" type="string">
      Analysis of web presence findings.
    </ResponseField>
  </ResponseField>
</ResponseField>

## Key Components

### Web Presence Analysis

The check evaluates online presence across multiple dimensions:

1. **Official Website**:
   * Domain verification
   * Content analysis
   * Visual assessment
   * Technical review

2. **Additional Web Pages**:
   * Business profiles
   * Directory listings
   * News coverage
   * Industry mentions

3. **Digital Footprint**:
   * Brand consistency
   * Content quality
   * Professional presence
   * Market visibility

### Verification Process

The check performs the following verifications:

1. Validates official website authenticity
2. Analyzes website content and structure
3. Reviews additional web presence
4. Assesses content consistency
5. Evaluates overall digital footprint

### Risk Indicators

The check evaluates potential red flags such as:

1. **Website Issues**:
   * Missing or inactive website
   * Unprofessional content
   * Technical problems
   * Inconsistent branding

2. **Web Presence Concerns**:
   * Limited digital footprint
   * Inconsistent information
   * Negative mentions
   * Suspicious patterns

3. **Content Risks**:
   * Outdated information
   * Missing key details
   * Poor quality content
   * Misleading claims
