Skip to main content
POST
/
api
/
v2
/
clearinghouse
/
check-eligibility
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.clearinghouse.check_eligibility(
    provider_identifier="providerIdentifier",
    provider_name="providerName",
    service_type_codes=["string"],
    subscriber_date_of_birth="subscriberDateOfBirth",
    subscriber_first_name="subscriberFirstName",
    subscriber_last_name="subscriberLastName",
    subscriber_member_id="subscriberMemberId",
    trading_partner_service_id="tradingPartnerServiceId",
)
print(response.eligibility)
{
  "eligibility": "<any>"
}

Body

application/json
tradingPartnerServiceId
string
required

The trading partner service ID

providerName
string
required

The provider name.

providerIdentifier
string
required

The provider identifier. This is usually your NPI.

subscriberDateOfBirth
string
required

The date of birth of the subscriber.

subscriberFirstName
string
required

The first name of the subscriber.

subscriberLastName
string
required

The last name of the subscriber.

subscriberMemberId
string
required

The member ID of the subscriber.

serviceTypeCodes
string[]
required

The service type codes.

Response

Successfully checked eligibility, returns the eligibility details from the payer.

eligibility
any
I