Standards-based access to your practice's notes, patients, and visits — and a SMART on FHIR bridge that writes notes straight back into your EMR.
Authorization: Bearer mls_xxxxxxxxxxxxxxxx Accept: application/fhir+jsonConformance: /fhir/metadata · SMART config: /.well-known/smart-configuration
Returns a FHIR Bundle of Patient resources for your practice.
Your scheduled/seen visits as FHIR Encounter resources.
The scribe's finished notes. The note text is base64 in content[0].attachment.data.
Write a note into MLS:
POST https://scrivara-backend.onrender.com/fhir/DocumentReference
Authorization: Bearer mls_...
Content-Type: application/fhir+json
{
"resourceType": "DocumentReference",
"status": "current",
"subject": { "reference": "Patient/EXTERNAL_ID" },
"content": [{ "attachment": {
"contentType": "text/plain",
"data": "<base64 of the note text>"
}}]
}
Register an https endpoint and MLS will POST the FHIR DocumentReference the moment a note is signed, HMAC-signed in X-MLS-Signature.
Connect an EMR (athenahealth, Epic, Cerner) once; MLS then writes finished notes straight into the patient's chart.
Status: /smart/status
FHIR® is a registered trademark of HL7. MLS is not affiliated with HL7, athenahealth, Epic, or Oracle Health.