An extraction API you can check, not just trust. Every field points to the exact line it came from.
POST a discharge summary to /extract and get back typed JSON for medications and diagnoses.
Check the span yourself. Nothing here is a black box.
{
"medications": [
{
"name": {
"value": "Lisinopril",
"citation": { "start": 130, "end": 140 }
},
"dose": {
"value": "10mg",
"citation": { "start": 141, "end": 145 }
},
"frequency": {
"value": "once daily",
"citation": { "start": 151, "end": 161 }
}
}
],
"diagnoses": [
{
"text": {
"value": "Hypertension",
"citation": { "start": 216, "end": 228 }
},
"certainty": "confirmed"
}
]
}
Source text
2. Lisinopril 10mg oral once daily
Hypertension, well controlled
What it extracts today
Medications
Name, dose, route, frequency, and status, parsed from discharge summaries and returned as typed, cited fields.
Diagnoses
Free text mapped to ICD-10 where the note supports it, with certainty, temporality, and laterality.
How access works today
There's no self-serve signup yet. Email us and we'll issue you an API key directly at hello@lexiome.ai.