Verificador de Interacciones

Validado por:
👥
Personas que usaron esta herramienta: --

Plantas medicinales – Medicamentos

0Plantas
0Interacciones
0Medicamentos
Aviso: Herramienta informativa. No reemplaza la consulta médica. Datos de EMA, ESCOP y PubMed.
Herramienta gratuita de Botánica AndinaVer versión completa

Cómo funciona

1. Selecciona plantas: Escribe el nombre de la planta (ej: "cúrcuma", "ajo", "ginkgo") y selecciona de la lista.

2. Añade medicamentos (opcional): Si tomas algún medicamento, ingrésalo para ver interacciones.

3. Verifica: Haz clic en "Verificar interacciones" para ver si hay contraindicaciones.

Referencias científicas

Los datos de interacciones provienen de:

Revisado por el equipo editorial

Equipo Editorial de Botánica Andina

Todas las interacciones verificadas contra literatura PubMed

Base de datos de 592 interacciones hierba-medicamento documentadas

Referencias Científicas

El verificador de interacciones se basa en evidencia de las siguientes fuentes científicas:

Piscitelli SC, et al. (2000). "Interaction of St. John's wort with low-dose oral contraceptive therapy: a randomized controlled trial." Journal of the American Medical Association, 283(9), 1137-1138. DOI: 10.1001/jama.283.9.1137

Ernst E. (2002). "The risk-benefit profile of commonly used herbal therapies: Ginkgo, St. John's Wort, Ginseng, Echinacea, Saw Palmetto, and Kava." Annals of Internal Medicine, 136(1), 42-53. DOI: 10.7326/0003-4819-136-1-200201015-00010

European Medicines Agency (EMA). (2020). "Guideline on the clinical investigation of herbal medicinal products." EMA Committee on Herbal Medicinal Products (HMPC). EMA Guideline

Fugh-Berman A. (2000). "Herb-drug interactions." Lancet, 355(9199), 134-138. DOI: 10.1016/S0140-6736(99)05712-8

Fuentes de datos: PubMed, EMA, ESCOP

Compartir esta herramienta

Incrustar en tu sitio

Copia el código para incrustar esta herramienta:

var selectedHerbs = []; var selectedDrugs = []; function init() { var uD = new Set(); DRUG_CLASSES.forEach(function(dc) { dc.drugs.forEach(function(d) { uD.add(d); }); }); document.getElementById('sH').textContent = HERBS.length; document.getElementById('sI').textContent = INTERACTIONS.length; document.getElementById('sD').textContent = uD.size; setupAutocomplete('herbInput', 'herbSuggestions', getHerbSuggestions, selectHerb); setupAutocomplete('drugInput', 'drugSuggestions', getDrugSuggestions, selectDrug); } function setupAutocomplete(inputId, suggestionsId, getSuggestions, onSelect) { var input = document.getElementById(inputId); var sugBox = document.getElementById(suggestionsId); input.addEventListener('input', function() { var query = this.value.trim().toLowerCase(); if (query.length < 2) { sugBox.style.display = 'none'; return; } var results = getSuggestions(query); if (results.length === 0) { sugBox.style.display = 'none'; return; } sugBox.innerHTML = results.map(function(r) { return '
' + r.name + '' + (r.detail ? ' ' + r.detail + '' : '') + '
'; }).join(''); sugBox.style.display = 'block'; sugBox.querySelectorAll('div').forEach(function(div) { div.addEventListener('click', function() { onSelect(this.dataset.id); input.value = ''; sugBox.style.display = 'none'; }); }); }); input.addEventListener('keydown', function(e) { if (e.key === 'Escape') sugBox.style.display = 'none'; if (e.key === 'Enter') { e.preventDefault(); var active = sugBox.querySelector('.active') || sugBox.querySelector('div'); if (active && sugBox.style.display === 'block') { onSelect(active.dataset.id); input.value = ''; sugBox.style.display = 'none'; } } if (e.key === 'ArrowDown' || e.key === 'ArrowUp') { e.preventDefault(); var items = sugBox.querySelectorAll('div'); if (items.length === 0) return; var current = sugBox.querySelector('.active'); if (current) current.classList.remove('active'); if (e.key === 'ArrowDown') { var next = current ? current.nextElementSibling || items[0] : items[0]; next.classList.add('active'); } else { var prev = current ? current.previousElementSibling || items[items.length-1] : items[items.length-1]; prev.classList.add('active'); } } }); document.addEventListener('click', function(e) { if (!input.contains(e.target) && !sugBox.contains(e.target)) sugBox.style.display = 'none'; }); } function getHerbSuggestions(query) { return HERBS.filter(function(h) { if (selectedHerbs.includes(h.id)) return false; return [h.name, h.scientific].concat(h.aliases).join(' ').toLowerCase().includes(query); }).map(function(h) { return { id: h.id, name: h.name, detail: h.scientific }; }); } function getDrugSuggestions(query) { var results = []; DRUG_CLASSES.forEach(function(dc) { if (selectedDrugs.includes(dc.id)) return; if ([dc.name].concat(dc.drugs, dc.aliases).join(' ').toLowerCase().includes(query)) { results.push({ id: dc.id, name: dc.name, detail: dc.drugs.slice(0,3).join(', ') }); } }); return results; } function selectHerb(id) { if (!selectedHerbs.includes(id)) { selectedHerbs.push(id); renderSelected('selectedHerbs', selectedHerbs, HERBS, removeHerb); } } function selectDrug(id) { if (!selectedDrugs.includes(id)) { selectedDrugs.push(id); renderSelected('selectedDrugs', selectedDrugs, DRUG_CLASSES, removeDrug); } } function removeHerb(id) { selectedHerbs = selectedHerbs.filter(function(h) { return h !== id; }); renderSelected('selectedHerbs', selectedHerbs, HERBS, removeHerb); } function removeDrug(id) { selectedDrugs = selectedDrugs.filter(function(d) { return d !== id; }); renderSelected('selectedDrugs', selectedDrugs, DRUG_CLASSES, removeDrug); } function renderSelected(containerId, ids, dataset, removeFn) { var container = document.getElementById(containerId); container.innerHTML = ids.map(function(id) { var item = dataset.find(function(d) { return d.id === id; }); return '' + item.name + ' '; }).join(''); container.querySelectorAll('button[data-remove]').forEach(function(btn) { btn.addEventListener('click', function() { removeFn(this.dataset.remove); }); }); } function checkInteractions() { if (selectedHerbs.length === 0) { alert('Selecciona al menos una planta medicinal.'); return; } var section = document.getElementById('resultsSection'); var container = document.getElementById('resultsContainer'); section.style.display = 'block'; var matches = []; selectedHerbs.forEach(function(herbId) { var herbInteractions = INTERACTIONS.filter(function(i) { return i.herb === herbId; }); if (selectedDrugs.length > 0) { selectedDrugs.forEach(function(drugId) { herbInteractions.filter(function(i) { return i.drugClass === drugId; }).forEach(function(f) { matches.push(f); }); }); } else { herbInteractions.forEach(function(i) { matches.push(i); }); } }); var severityOrder = { alta: 0, moderada: 1, baja: 2, teorica: 3 }; matches.sort(function(a, b) { return severityOrder[a.severity] - severityOrder[b.severity]; }); if (matches.length === 0) { container.innerHTML = '

No se encontraron interacciones documentadas

' + 'Esto NO significa que sea seguro. Consulte a su m\u00e9dico.
'; section.scrollIntoView({ behavior: 'smooth', block: 'start' }); return; } var evLabels = {A:'A — Alta',B:'B — Moderada',C:'C — Precl\u00ednica',D:'D — Te\u00f3rica'}; var svLabels = { alta: 'Alta', moderada: 'Moderada', baja: 'Baja', teorica: 'Te\u00f3rica' }; container.innerHTML = '

' + 'Se encontraron ' + matches.length + ' interacciones. Ordenadas por gravedad.

' + matches.map(function(m) { var herb = HERBS.find(function(h) { return h.id === m.herb; }); var drug = DRUG_CLASSES.find(function(d) { return d.id === m.drugClass; }); return '
' + '
' + herb.name + ' + ' + drug.name + '' + '' + svLabels[m.severity] + '
' + '
Efecto: ' + m.effect + '
' + '
Mecanismo: ' + m.mechanism + '
' + '
Evidencia: ' + m.evidence + ' ' + (evLabels[m.evidenceLevel] || 'C') + '
' + '
Fuente: ' + m.source + (m.doi ? ' — DOI Verificado' : '') + '
'; }).join(''); section.scrollIntoView({ behavior: 'smooth', block: 'start' }); } document.addEventListener('DOMContentLoaded', init);

Referencias Científicas

El verificador de interacciones se basa en evidencia de las siguientes fuentes científicas:

Piscitelli SC, et al. (2000). "Interaction of St. John's wort with low-dose oral contraceptive therapy: a randomized controlled trial." Journal of the American Medical Association, 283(9), 1137-1138. DOI: 10.1001/jama.283.9.1137

Ernst E. (2002). "The risk-benefit profile of commonly used herbal therapies: Ginkgo, St. John's Wort, Ginseng, Echinacea, Saw Palmetto, and Kava." Annals of Internal Medicine, 136(1), 42-53. DOI: 10.7326/0003-4819-136-1-200201015-00010

European Medicines Agency (EMA). (2020). "Guideline on the clinical investigation of herbal medicinal products." EMA Committee on Herbal Medicinal Products (HMPC). EMA Guideline

Fugh-Berman A. (2000). "Herb-drug interactions." Lancet, 355(9199), 134-138. DOI: 10.1016/S0140-6736(99)05712-8

Fuentes de datos: PubMed, EMA, ESCOP