POST
/
api
/
v2
/
clearinghouse
/
patient-cost
Python
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",
    }],
)

Body

application/json

Response

200

Default Response