Documents API
List bill documents
List every document currently included in the payer billing packet.
GET
https://app.mindbill.org/partner/v2/bills/{billId}/documentsInspect or reconcile the exact document packet frozen onto a submitted bill.
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/documents \
--header "Authorization: Bearer $MINDBILL_API_KEY"Response
200 OK
{
"data": [{
"id": "doc_01J6Z1",
"externalId": "document_73",
"filename": "final-report.pdf",
"description": "Final medical-legal report",
"documentType": "final_report",
"source": "partner_api",
"addedAt": "2026-08-29T18:20:00.000Z",
"contentUrl": "https://app.mindbill.org/..."
}]
}FieldTypeDescription
data[].idRequiredstringMindBill document identifier.
data[].externalIdRequiredstring | nullYour document identifier when supplied.
data[].filenameRequiredstringFilename shown during packet review.
data[].descriptionRequiredstring | nullHuman-readable packet description.
data[].documentTypeRequiredBillDocumentTypeDocument classification.
data[].sourceRequiredstringHow the document entered the bill.
data[].addedAtRequiredstringISO timestamp when the document was attached.
data[].contentUrlRequiredstringAuthorized content URL.