Lifecycle API
Get the EOR
Read structured Explanation of Review data and source documents.
GET
https://app.mindbill.org/partner/v2/bills/{billId}/eorShow the payer decision, line-level allowed and paid amounts, adjustment reasons, and the original EOR PDF when available.
Use this URL with a server API key or a browser session and its exact allowed Origin. Both credentials use the same request and response contract. See the component API inventory for exact paths and SDK methods.
Path parameters
FieldTypeDescription
billIdRequiredstringThe MindBill bill identifier returned after atomic submission.
Examples
curl https://app.mindbill.org/partner/v2/bills/$BILL_ID/eor \
--header "Authorization: Bearer $MINDBILL_API_KEY"Response
200 OK
{
"data": {
"billId": "bill_01J6Y7F4Q4XK6P3J9G2C8A1B5D",
"reportedPaid": 1600,
"totalPaid": 0,
"balanceDue": 2015,
"lineItems": [{ "id": "eor_line_1", "code": "ML201", "paid": 1600, "allowedAmount": 1600, "adjustmentAmount": 415, "patientResponsibility": 0, "reasonCodes": ["CO-45"] }],
"documents": [{ "id": "doc_eor_1", "filename": "eor.pdf", "contentType": "application/pdf", "addedAt": "2026-08-29T18:42:11.000Z", "contentUrl": "https://app.mindbill.org/..." }]
}
}FieldTypeDescription
data.reportedPaidRequirednumber | nullAmount reported by the EOR.
data.totalPaidRequirednumberPayments currently posted to the bill.
data.balanceDueRequirednumberCurrent unpaid balance.
data.lineItems[].codeRequiredstringProcedure code adjudicated by the payer.
data.lineItems[].paidRequirednumberAmount paid for the line.
data.lineItems[].allowedAmountRequirednumber | nullPayer allowed amount.
data.lineItems[].adjustmentAmountRequirednumber | nullAdjustment amount.
data.lineItems[].reasonCodesRequiredstring[]CARC/RARC or payer reason codes.
data.documents[].contentUrlRequiredstringAuthorized URL for the original EOR document.