Skip to main content
POST
/
api
/
v2
/
clearinghouse
/
claim-status
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.clearinghouse.check_claim_status(
    provider_npi="providerNpi",
    subscriber_date_of_birth="7321-69-10",
    subscriber_first_name="subscriberFirstName",
    subscriber_last_name="subscriberLastName",
    subscriber_member_id="subscriberMemberId",
    trading_partner_service_id="tradingPartnerServiceId",
)
print(response)
"<any>"

Body

application/json
tradingPartnerServiceId
string
required

The Payer ID in our clearinghouse

providerNpi
string
required

The provider's NPI number

subscriberFirstName
string
required

The subscriber's first name

subscriberLastName
string
required

The subscriber's last name

subscriberDateOfBirth
string
required

The subscriber's date of birth (YYYY-MM-DD format)

subscriberMemberId
string
required

The subscriber's member ID

payerClaimNumber
string

The payer claim number (ICN) to check status for

providerName
string

The provider's organization name

serviceFromDate
string

The beginning date of service (YYYY-MM-DD format)

serviceToDate
string

The ending date of service (YYYY-MM-DD format)

Response

Claim status information from the payer including processing status and details

I