@loop/health-data
Static reference data for the Loop Health clinical platform. See the Health Data: Reference Data section for comprehensive documentation including all accessor functions, data types, and usage examples.
Quick Reference
import { getBiomarkerById, resolveSynonym, getPanelById, getPeptideById } from '@loop/health-data';
// Biomarker lookup
const biomarker = getBiomarkerById('testosterone-total');
// Synonym resolution
const code = resolveSynonym('biomarkers', 'Total T'); // 'testosterone-total'
// Panel lookup
const panel = getPanelById('comprehensive-metabolic');
// Peptide lookup
const peptide = getPeptideById('bpc-157');Data Exports
| Export | Type | Records |
|---|---|---|
biomarkerRanges | BiomarkerRange[] | All biomarker reference ranges |
contraindications | Contraindication[] | Contraindication records |
peptideInventory | Peptide[] | Peptide catalog |
panelDefinitions | PanelDefinition[] | Lab panel definitions |
synonyms | Synonyms | Synonym maps |
For full API documentation, see Reference Data.