The Eligibility & Benefit Verification API is used to verify the patient's active insurance status and retrieve their benefit information. It checks if the patient is eligible for coverage, provides detailed insurance information, and calculates the patient’s responsibility for the procedure or treatment, such as co-pays or deductibles.
POST /api/v1/eligibility/verifyThe response provides details about whether the patient’s insurance is active, along with coverage and benefit information such as co-pays, co-insurance, and coverage limits. It also includes the patient's responsibility for any out-of-pocket costs.
{
"insurance": "Aetna",
"plan": "Gold",
"hcpcs_code": "J1885",
"prescription": "XYZ medication",
"member_id": "P1234567"
}
Example Response
{
"insurance": "Aetna",
"plan": "Gold",
"hcpcs_code": "J1885",
"prescription": "XYZ medication",
"member_id": "P1234567"
}