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

# Basic Business Profile Check

> Verify and validate basic business information from web data against self-attested data

The basic business profile check response payload contains a detailed analysis of a business's online presence and profile information. The check compares self-attested business data against information found through web research and public sources.

## Check ID

`kyb.basic_business_profile_check`

## Response Structure

```typescript theme={null}
{
  type: "BasicBusinessProfileCheckResult";
  business_name_match: BusinessNameDocMatch | null;
  business_description_match: BusinessDescriptionDocMatch | null;
  business_industry_match: BusinessIndustryDocMatch | null;
  passed: boolean;
}
```

## Example Response

```json theme={null}
{
  "type": "BasicBusinessProfileCheckResult",
  "business_name_match": {
    "text": "Parcha Labs, Inc.",
    "source_id": "company_website",
    "analysis": "Exact match with registered business name found on official website"
  },
  "business_description_match": {
    "text": "Provider of AI-powered compliance and risk management solutions",
    "source_id": "linkedin_profile",
    "analysis": "Business description consistent with self-attested information"
  },
  "business_industry_match": {
    "text": "RegTech / Compliance Software",
    "source_id": "company_website",
    "analysis": "Industry classification matches self-attested information"
  },
  "passed": true,
  "verification_data": {
    "web_presence": {
      "source_1": {
        "text": "Parcha Labs is a leading provider of AI-powered compliance solutions",
        "source_id": "company_website",
        "url": "https://parcha.ai/about",
        "analysis": "Company website confirms business name and description"
      },
      "source_2": {
        "text": "Parcha Labs, Inc. - AI-driven compliance and risk management platform",
        "source_id": "linkedin_profile",
        "url": "https://www.linkedin.com/company/parcha-ai",
        "analysis": "LinkedIn profile validates business name and description"
      }
    }
  }
}
```

## Response Fields

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

<ResponseField name="business_name_match" type="object | null">
  Match information for the business name verification.

  <ResponseField name="text" type="string">
    The matched business name text found in the source.
  </ResponseField>

  <ResponseField name="source_id" type="string">
    Identifier for the source where the name was found.
  </ResponseField>

  <ResponseField name="analysis" type="string">
    Analysis of the business name match.
  </ResponseField>
</ResponseField>

<ResponseField name="business_description_match" type="object | null">
  Match information for the business description verification.

  <ResponseField name="text" type="string">
    The matched business description text found in the source.
  </ResponseField>

  <ResponseField name="source_id" type="string">
    Identifier for the source where the description was found.
  </ResponseField>

  <ResponseField name="analysis" type="string">
    Analysis of the business description match.
  </ResponseField>
</ResponseField>

<ResponseField name="business_industry_match" type="object | null">
  Match information for the business industry verification.

  <ResponseField name="text" type="string">
    The matched industry classification text found in the source.
  </ResponseField>

  <ResponseField name="source_id" type="string">
    Identifier for the source where the industry was found.
  </ResponseField>

  <ResponseField name="analysis" type="string">
    Analysis of the industry classification match.
  </ResponseField>
</ResponseField>

<ResponseField name="passed" type="boolean">
  Indicates whether the business profile information was successfully verified.
</ResponseField>

<ResponseField name="verification_data" type="object">
  Detailed findings from the profile verification process.

  <ResponseField name="web_presence" type="object">
    Information found through web research.

    <ResponseField name="source_id" type="string">
      Identifier for the source of the information.
    </ResponseField>

    <ResponseField name="text" type="string">
      Relevant text excerpt about the business.
    </ResponseField>

    <ResponseField name="url" type="string">
      URL where the information was found.
    </ResponseField>

    <ResponseField name="analysis" type="string">
      Analysis of the findings from this source.
    </ResponseField>
  </ResponseField>
</ResponseField>

## Key Components

### Profile Analysis

The check evaluates business information across multiple dimensions:

1. **Business Identity**:
   * Legal name verification
   * Name variations and aliases
   * Brand consistency

2. **Business Description**:
   * Products and services
   * Value proposition
   * Target market
   * Business model

3. **Industry Classification**:
   * Primary industry
   * Sub-industries
   * Business activities

### Verification Process

The check performs the following verifications:

1. Validates business name across multiple sources
2. Cross-references business descriptions
3. Verifies industry classifications
4. Analyzes consistency between sources
5. Evaluates data reliability and freshness

### Data Sources

Information is gathered and verified through:

1. **Official Sources**:
   * Company website
   * Business registrations
   * Professional networks

2. **Third-Party Sources**:
   * Business directories
   * News articles
   * Industry databases
   * Social media platforms
