US Healthcare Card

The .NET SDK supports the Mindee V1 Healthcare Card API.

Product Specifications

Specification
Details

Endpoint Name

us_healthcare_cards

Recommended Version

v1.3

Supports Polling/Webhooks

✔️ Yes

Support Synchronous HTTP Calls

❌ No

Geography

🇺🇸 United States

Quick-Start

Using the sample below, we are going to illustrate how to extract the data that we want using the SDK.

Healthcare Card Sample

Sample Code

using Mindee;
using Mindee.Input;
using Mindee.Product.Us.HealthcareCard;

string apiKey = "my-api-key";
string filePath = "/path/to/the/file.ext";

// Construct a new client
MindeeClient mindeeClient = new MindeeClient(apiKey);

// Load an input source as a path string
// Other input types can be used, as mentioned in the docs
var inputSource = new LocalInputSource(filePath);

// Call the product asynchronously with auto-polling
var response = await mindeeClient
    .EnqueueAndParseAsync<HealthcareCardV1>(inputSource);

// Print a summary of all the predictions
System.Console.WriteLine(response.Document.ToString());

// Print only the document-level predictions
// System.Console.WriteLine(response.Document.Inference.Prediction.ToString());

Sample Output (rST)

########
Document
########
:Mindee ID: 5e917fc8-5c13-42b2-967f-954f4eed9959
:Filename: default_sample.jpg

Inference
#########
:Product: mindee/us_healthcare_cards v1.3
:Rotation applied: Yes

Prediction
==========
:Company Name: UnitedHealthcare
:Plan Name: Choice Plus
:Member Name: SUBSCRIBER SMITH
:Member ID: 123456789
:Issuer 80840:
:Dependents: SPOUSE SMITH
             CHILD1 SMITH
             CHILD2 SMITH
             CHILD3 SMITH
:Group Number: 98765
:Payer ID: 87726
:RX BIN: 610279
:RX ID:
:RX GRP: UHEALTH
:RX PCN: 9999
:Copays:
  +--------------+----------------------+
  | Service Fees | Service Name         |
  +==============+======================+
  | 20.00        | office_visit         |
  +--------------+----------------------+
  | 300.00       | emergency_room       |
  +--------------+----------------------+
  | 75.00        | urgent_care          |
  +--------------+----------------------+
  | 30.00        | specialist           |
  +--------------+----------------------+
:Enrollment Date:

Standard Fields

These fields are generic and used in several products.

BaseField

Each prediction object contains a set of fields that inherit from the generic BaseField class. A typical BaseField object will have the following attributes:

  • Confidence (double?): the confidence score of the field prediction.

  • BoundingBox (BoundingBox): contains exactly 4 relative vertices (points) coordinates of a right rectangle containing the field in the document.

  • Polygon (Polygon): contains the relative vertices coordinates (Polygon extends List<Point>) of a polygon containing the field in the image.

  • PageId (int?): the ID of the page, always null when at document-level.

A Point simply refers to a List of double.

Aside from the previous attributes, all basic fields have access to a custom ToString method that can be used to print their value as a string.

StringField

The text field StringField extends BaseField, but also implements:

  • Value (string): corresponds to the field value.

  • RawValue (string): corresponds to the raw value as it appears on the document.

DateField

The date field DateField extends StringField, but also implements:

  • DateObject (DateTime?): an accessible representation of the value as a C# object. Can be null.

Specific Fields

Fields which are specific to this product; they are not used in any other product.

Copays Field

Copayments for covered services.

A HealthcareCardV1Copay implements the following attributes:

  • ServiceFees (double): The price of the service.

  • ServiceName (string): The name of the service. Possible values include:

    • primary_care

    • emergency_room

    • urgent_care

    • specialist

    • office_visit

    • prescription

Attributes

The following fields are extracted for Healthcare Card V1:

Company Name

CompanyName: The name of the company that provides the healthcare plan.

System.Console.WriteLine(result.Document.Inference.Prediction.CompanyName.Value);

Copays

Copays(List<HealthcareCardV1Copay>): Copayments for covered services.

foreach (var CopaysElem in result.Document.Inference.Prediction.Copays)
{
    System.Console.WriteLine(CopaysElem.Value);
}

Dependents

Dependents: The list of dependents covered by the healthcare plan.

foreach (var DependentsElem in result.Document.Inference.Prediction.Dependents)
{
    System.Console.WriteLine(DependentsElem.Value);
}

Enrollment Date

EnrollmentDate: The date when the member enrolled in the healthcare plan.

System.Console.WriteLine(result.Document.Inference.Prediction.EnrollmentDate.Value);

Group Number

GroupNumber: The group number associated with the healthcare plan.

System.Console.WriteLine(result.Document.Inference.Prediction.GroupNumber.Value);

Issuer 80840

Issuer80840: The organization that issued the healthcare plan.

System.Console.WriteLine(result.Document.Inference.Prediction.Issuer80840.Value);

Member ID

MemberId: The unique identifier for the member in the healthcare system.

System.Console.WriteLine(result.Document.Inference.Prediction.MemberId.Value);

Member Name

MemberName: The name of the member covered by the healthcare plan.

System.Console.WriteLine(result.Document.Inference.Prediction.MemberName.Value);

Payer ID

PayerId: The unique identifier for the payer in the healthcare system.

System.Console.WriteLine(result.Document.Inference.Prediction.PayerId.Value);

Plan Name

PlanName: The name of the healthcare plan.

System.Console.WriteLine(result.Document.Inference.Prediction.PlanName.Value);

RX BIN

RxBin: The BIN number for prescription drug coverage.

System.Console.WriteLine(result.Document.Inference.Prediction.RxBin.Value);

RX GRP

RxGrp: The group number for prescription drug coverage.

System.Console.WriteLine(result.Document.Inference.Prediction.RxGrp.Value);

RX ID

RxId: The ID number for prescription drug coverage.

System.Console.WriteLine(result.Document.Inference.Prediction.RxId.Value);

RX PCN

RxPcn: The PCN number for prescription drug coverage.

System.Console.WriteLine(result.Document.Inference.Prediction.RxPcn.Value);

Last updated

Was this helpful?