Term expansion, trend detection, gap analysis, and semantic mapping — powered by Watchtower, a system that monitors PubMed daily and discovers terminology before it's formally indexed.
| Feature | MeSH (NLM) | UMLS | Lexicon API |
|---|---|---|---|
| Controlled vocabulary | Yes | Yes | Yes + auto-expanding |
| REST API | Limited (E-Utils) | SOAP/REST (complex) | Simple REST + JSON |
| Emerging terms | No (annual updates) | No | Real-time discovery |
| Auto-learn from queries | No | No | Yes (MeSH + PubMed lookup) |
| Beyond-MeSH detection | N/A | N/A | Watchtower-powered |
| PICO terminology | Partial | Partial | Native PICO category |
| Methodology terms | No | Partial | Built-in (ROB2, PRISMA, etc.) |
| Batch lookup | No | Limited | Up to 100 terms/request |
| Free tier | Yes | Yes (license required) | Yes (100 req/day) |
| Setup complexity | Medium | High (UMLS license) | 1 header, instant |
Base URL: https://evidenx.lat/api/lexicon-api.php
Authentication: Pass your key via X-API-Key header or ?key= query parameter.
q (required, min 2 chars), limit (optional, max 50)curl "https://evidenx.lat/api/lexicon-api.php?action=search&q=cardiac+remodeling" \
-H "X-API-Key: lex_your_key_here"
{
"ok": true,
"query": "cardiac remodeling",
"count": 2,
"terms": [
{
"term": "Cardiac Remodeling",
"definition": "Adaptive structural and functional changes...",
"category": "mesh",
"mesh_id": "D020257",
"usage_count": 15
}
]
}
curl "https://evidenx.lat/api/lexicon-api.php?action=lookup&term=exercise-induced+arrhythmia" \ -H "X-API-Key: lex_your_key_here"
curl "https://evidenx.lat/api/lexicon-api.php?action=beyond_mesh&limit=20" \ -H "X-API-Key: lex_your_key_here"
curl -X POST "https://evidenx.lat/api/lexicon-api.php" \
-H "X-API-Key: lex_your_key_here" \
-H "Content-Type: application/json" \
-d '{"action":"learn","term":"exercise-induced cardiac fatigue"}'
{
"ok": true,
"action": "learned",
"category": "mesh_x",
"mesh_id": null,
"definition": "Found in 847 PubMed articles."
}
curl -X POST "https://evidenx.lat/api/lexicon-api.php" \
-H "X-API-Key: lex_your_key_here" \
-H "Content-Type: application/json" \
-d '{"action":"batch","terms":["ARDS","low tidal volume","PEEP"]}'
Every response includes:
X-RateLimit-Limit: 10000 X-RateLimit-Remaining: 9847 X-RateLimit-Reset: 1712534400 X-Lexicon-Plan: developer
Enrich your NLP models with validated scientific terminology. Use beyond_mesh to catch terms your pipeline misses.
Auto-validate PICO terms, expand search strategies with MeSH synonyms, detect emerging terminology in your field.
Feed your dashboards with real-time terminology intelligence. Track which terms are emerging vs. established.