Lifecycle API

Get the EOR

Read structured Explanation of Review data and source documents.

GEThttps://app.mindbill.org/partner/v2/bills/{billId}/eor

Show the payer decision, line-level allowed and paid amounts, adjustment reasons, and the original EOR PDF when available.

AuthenticationServer API key or browser session + Origin
Permissions by credentialServer: bills:read · Browser: eors:read
IdempotencyNot required

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
billIdRequired
string

The MindBill bill identifier returned after atomic submission.

Examples

Get EOR
curl https://app.mindbill.org/partner/v2/bills/$BILL_ID/eor \
  --header "Authorization: Bearer $MINDBILL_API_KEY"

Response

200 OK

Response
{
  "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.reportedPaidRequired
number | null

Amount reported by the EOR.

data.totalPaidRequired
number

Payments currently posted to the bill.

data.balanceDueRequired
number

Current unpaid balance.

data.lineItems[].codeRequired
string

Procedure code adjudicated by the payer.

data.lineItems[].paidRequired
number

Amount paid for the line.

data.lineItems[].allowedAmountRequired
number | null

Payer allowed amount.

data.lineItems[].adjustmentAmountRequired
number | null

Adjustment amount.

data.lineItems[].reasonCodesRequired
string[]

CARC/RARC or payer reason codes.

data.documents[].contentUrlRequired
string

Authorized URL for the original EOR document.