Generate verification report
curl -X POST "https://api.deepverify.ai/v1/deepverify/report" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"claim_id": "12345ABC",
"policy_text": "The patient is eligible for a 20% copay for all outpatient services.",
"medical_record_text": "Patient X received outpatient surgery on January 15th, covered under policy number XYZ."
}'
{
"claim_id": "12345ABC",
"verified": true,
"compliance_rate": 0.95,
"discrepancy_found": false,
"report_summary": "The medical record aligns with the insurance policy. The claim is eligible for a 20% copay."
}
Last updated