The EIN Document Verification check returns a detailed analysis of the provided EIN documents and verification results. The check result will be returned in the payload field of the check result object.

Response Schema

type
string
required

Type identifier “KYBEINDocumentVerificationResult”

verified_ein
string

The verified EIN number extracted from the document

verified_business_name
string

The verified business name extracted from the document

verified_address
object

The verified business address extracted from the document

document_date
string

The date on the document in YYYY-MM-DD format

valid_documents
array

List of valid EIN documents that were successfully verified

invalid_documents
array

List of invalid EIN documents that failed verification

Example Response

{
  "type": "KYBEINDocumentVerificationResult",
  "valid_documents": [
    {
      "type": "EINDocumentExtractionResult",
      "irs_logo_valid": true,
      "form_layout_valid": true,
      "is_authentic_document": true,
      "inspection": "The input document is a CP575A notice. The IRS logo in the top left corner is identical to the example. The overall layout of the form, including the placement of sections and information, matches the example CP575. The content is consistent with an IRS EIN notice, including the EIN, business name, and address. No obvious signs of alteration or forgery were detected.",
      "is_valid_document": true,
      "analysis": "This document is a valid CP575A notice issued by the IRS. It contains all the required elements including the EIN, business name, address, and document date. The format and content are consistent with authentic IRS EIN assignment notices.",
      "summary": "This document is an official IRS CP575A notice assigning an Employer Identification Number (EIN) to Parcha Labs Inc. It provides the EIN, business details, and important tax filing information.",
      "ein": "92-3265708",
      "business_name": "PARCHA LABS INC",
      "address": {
        "type": "Address",
        "street_1": "746 4TH AVE",
        "street_2": null,
        "city": "SAN FRANCISCO",
        "state": "CA",
        "country_code": null,
        "postal_code": "94118"
      },
      "document_date": "2023-03-31",
      "document_type": "IRS Notice CP575A",
      "document": {
        "type": "Document",
        "url": "https://storage.googleapis.com/parcha-ai-public-assets/CP575Notice_Parcha.pdf",
        "file_name": "Parcha_EIN.pdf",
        "source_type": "file_url"
      }
    }
  ],
  "invalid_documents": [],
  "verified_ein": "92-3265708",
  "verified_business_name": "PARCHA LABS INC",
  "verified_address": {
    "type": "Address",
    "street_1": "746 4TH AVE",
    "street_2": null,
    "city": "SAN FRANCISCO",
    "state": "CA",
    "country_code": null,
    "postal_code": "94118"
  },
  "document_date": "2023-03-31"
}