from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
client.v2.clearinghouse.calculate_patient_cost(
eligibility_responses=[{
"in_network": True
}],
line_items=[{
"id": "id",
"cpt_code": "cptCode",
"service_amount": 0,
"service_date": "serviceDate",
}],
)
Calculates the cost of a patient’s services based on the provided information.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
client.v2.clearinghouse.calculate_patient_cost(
eligibility_responses=[{
"in_network": True
}],
line_items=[{
"id": "id",
"cpt_code": "cptCode",
"service_amount": 0,
"service_date": "serviceDate",
}],
)
Default Response