FHIR REST APIs
Orders, results, and the chart payload — the lattice as versioned endpoints.
Developers
Integrate Diagnostics and Clinical Record with FHIR REST APIs, a sandbox tenant, and production-shaped examples.
Orders, results, and the chart payload — the lattice as versioned endpoints.
A non-production tenant for development and testing.
Node and Python examples for the order and result paths.
API changes ship with versions, not surprises.
Order, result, file — documented as they run.
Partners who still speak v2 do not force your product off FHIR.
Example
Base URL https://api.lattix.co/fhir. OAuth 2.0 bearer tokens. Resources you already know: Patient, ServiceRequest, Observation, DiagnosticReport, ImagingStudy, Subscription.
Legacy interop is handled under the hood: HL7 v2, SFTP, MLLP.
POST /fhir/ServiceRequest
const res = await fetch("https://api.lattix.co/fhir/ServiceRequest", {
method: "POST",
headers: {
Authorization: "Bearer <token>",
"Content-Type": "application/fhir+json",
},
body: JSON.stringify(order),
});
const created = await res.json();
// Electronic order on the lattice
console.log(created.id);| Resource | Used for |
|---|---|
| Patient | Identity and match |
| ServiceRequest | Lab and imaging orders |
| DiagnosticReport / Observation | Structured results |
| ImagingStudy | Imaging context alongside the report |
| DocumentReference | Clinical documents on the payload |
| Subscription | Result delivery when the lab files |
Talk with us about labs, imaging, and putting the chart on one interchange.