Payer Matching 🔍

Overview

Matching insurance cards to the responsible payer and identifying the necessary clearinghouse IDs for eligibility checks and claim submissions presents a complex challenge.

Insurance cards often lack explicit payer IDs, may feature only a payer's logo, present unclear payer names, or exhibit various issues that complicate accurate matching.

Note: Payer Match is a paid feature only available to our Enterprise customers.

We leverage our sophisticated matching algorithms, similar to those used in our eligibility check processes, to provide detailed and accurate payer information based on submitted card data.

Matches are generated during the scanning process and will be returned once the card scan is completed.

Payer matching works best when paired with backside scanning as many cards have important details only found on the backside of the card.

Canonical Match

We match card details against our internal database of payer names and identifiers. Upon finding a high-confidence match, we return the canonical payer name along with CardScan.ai's unique payer ID.

{
  "payer_match": {
    "cardscan_payer_id": "UH-87726-154",
    "cardscan_payer_name": "United Healthcare",
    "score": "0.985"
  }
}

Clearing House Matching

We also match card details with various clearinghouses, including Change Healthcare and Availity. This feature is designed to help our customers maintain their workflows with existing vendors for processing eligibility checks and submitting claims, while significantly reducing errors.

{
  "payer_match": {
    "change_healthcare": [
      {
        "chc_payer_id": "UHC",
        "chc_payer_name": "UNITED HEALTHCARE",
        "score": "0.95"
      }
    ],
    "availity": [
      {
        "availity_payer_id": "87726",
        "availity_payer_name": "UNITED HEALTHCARE",
        "score": "0.92"
      }
    ]
  }
}

Custom Matching

Recognizing the unique needs of our customers, we also offer the ability to match with a customer's specific payer list and return identifiers at scan time. This customization ensures that the payer information provided is directly relevant and tailored to the operational requirements of our customers.

{
  "payer_match": {
    "custom": [
      {
        "custom_payer_id": "UHC",
        "custom_payer_name": "United Healthcare",
        "custom_payer_name_alt": "Alternate name for UHC",
        "score": "0.958",
        "source": "custom_payer_list_20240130"
      }
    ]
  }
}

Access and Support

This feature is available exclusively to subscribers of our enterprise plans. For more information on accessing the Payer Match feature or for assistance in setting up and configuring custom payer matches, please contact our sales or support team.

Last updated