NABHDesk
Integrations

Your indicator data already exists. Stop typing it twice.

Length of stay, discharge turnaround, LAMA percentage, mortality, lab report turnaround, re-dos, medication errors, falls — all computable from what your hospital already captures at clinical entry and billing.

Option 01

Caresoft HIS

Native connector. Enable it on the hospital record, and monthly values arrive with numerator and denominator intact for the quality team to review and sign off.

Option 02

Any other HIS

A token-authenticated JSON endpoint accepts the same metric keys from any vendor. Your HIS partner implements a single POST per month, or nightly if you prefer.

Option 03

Excel or CSV

Download the template, fill it the way your team already keeps the data, upload. Every row is validated before anything commits, and rejected rows come back with the reason attached.

API

One endpoint, documented

POST to /api/his_push.php with your hospital API key in the X-API-Key header. Send one or many metrics per call.

POST /api/his_push.php
X-API-Key: <hospital key>
Content-Type: application/json

{
  "period": { "year": 2026, "month": 7 },
  "metrics": [
    { "key": "aac_alos",             "numerator": 12480, "denominator": 3120 },
    { "key": "aac_discharge_tat",    "numerator": 6240,  "denominator": 3120 },
    { "key": "psq_mortality_rate",   "numerator": 41,    "denominator": 3120 },
    { "key": "ipc_cauti_rate",       "numerator": 3,     "denominator": 1420 }
  ]
}
Metric keys

Indicators that can arrive automatically

The rest — hand hygiene compliance, patient and employee satisfaction, training coverage, needle stick injuries, equipment downtime — need human observation and stay manual by design.

QI-01 · aac_initial_assessment_tat

Time taken for initial assessment of indoor patients

QI-02 · ims_missing_discharge_summary_pct

Percentage of medical records not having discharge summary

QI-03 · mom_medication_error_rate

Percentage of medication errors

QI-04 · ipc_cauti_rate

Incidence of catheter associated urinary tract infection

QI-05 · ipc_clabsi_rate

Incidence of central line associated blood stream infection

QI-06 · ipc_vap_rate

Incidence of ventilator associated pneumonia

QI-07 · ipc_ssi_rate

Surgical site infection rate

QI-09 · psq_fall_rate

Incidence of patient falls

QI-10 · cop_pressure_ulcer_rate

Incidence of bed sores after admission

QI-11 · cop_reexploration_pct

Percentage of re-exploration

QI-12 · cop_icu_readmission_pct

Percentage of unplanned return to ICU within 48 hours

QI-13 · cop_transfusion_reaction_pct

Percentage of transfusion reactions

QI-14 · mom_adr_pct

Percentage of adverse drug reactions

QI-15 · cop_safe_surgery_checklist_pct

Percentage of cases where safe surgery checklist completed

QI-16 · cop_surgery_reschedule_pct

Percentage of rescheduling of surgery

QI-17 · aac_lab_tat

Turnaround time for laboratory reports

QI-18 · aac_redo_test_pct

Percentage of re-dos of investigations

QI-19 · aac_lama_pct

Percentage of LAMA and DAMA

QI-20 · aac_early_dama_pct

Percentage of discharges against medical advice within 24 hours of admission

QI-21 · aac_alos

Average length of stay

QI-22 · aac_discharge_tat

Discharge turnaround time

QI-23 · psq_mortality_rate

Mortality rate

QI-32 · rom_estimate_variance_pct

Percentage of variation from planned billing at admission

Already running Caresoft HIS?

The connector is switched on from your hospital record. No development work at your end.

Talk to us