Drug interaction detection for healthcare software
RxLabelGuard turns FDA Structured Product Labeling into a clean, queryable API. Send drug names, get back structured interaction data with severity levels, mechanisms, and evidence citations.
curl https://api.rxlabelguard.com/v1/interactions \
-H "Authorization: Bearer rxlg_your_api_key" \
-d '{"drugs": ["warfarin", "aspirin"]}'
# Response
{
"interactions": [{
"drug_a": "warfarin",
"drug_b": "aspirin",
"severity": "major",
"mechanism": "Additive anticoagulant effect",
"recommendation": "Monitor INR closely",
"evidence": {
"source": "FDA SPL",
"spl_set_id": "ab12cd34-..."
}
}]
}