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.

Response Structure

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

Example Response

{
  "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

type
string

The type identifier for the response. Will be “BasicBusinessProfileCheckResult”.

business_name_match
object | null

Match information for the business name verification.

text
string

The matched business name text found in the source.

source_id
string

Identifier for the source where the name was found.

analysis
string

Analysis of the business name match.

business_description_match
object | null

Match information for the business description verification.

text
string

The matched business description text found in the source.

source_id
string

Identifier for the source where the description was found.

analysis
string

Analysis of the business description match.

business_industry_match
object | null

Match information for the business industry verification.

text
string

The matched industry classification text found in the source.

source_id
string

Identifier for the source where the industry was found.

analysis
string

Analysis of the industry classification match.

passed
boolean

Indicates whether the business profile information was successfully verified.

verification_data
object

Detailed findings from the profile verification process.

web_presence
object

Information found through web research.

source_id
string

Identifier for the source of the information.

text
string

Relevant text excerpt about the business.

url
string

URL where the information was found.

analysis
string

Analysis of the findings from this source.

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