MedlinePlus Genetics
Plain-language genetics reference from the NLM, in JSON
The US National Library of Medicine serves its MedlinePlus Genetics articles — conditions, genes, chromosomes, and mtDNA — as downloadable JSON files, one per topic. Fetch a condition by name and you get its summary, synonyms, and linked resources. Heads up: the CORS header only allows *.nlm.nih.gov origins.
GET https://medlineplus.gov/download/genetics/condition/alkaptonuria.json
{
"name": "Alkaptonuria",
"ghr_page": "https://medlineplus.gov/genetics/condition/alkaptonuria",
"text-list": [
{
"text": {
"html": "<p>Alkaptonuria is an inherited condition that causes arthritis, kidney stones, spots of dark pigmentation, and dark urine...</p>"
}
}
]
}curl "https://medlineplus.gov/download/genetics/condition/alkaptonuria.json"const res = await fetch("https://medlineplus.gov/download/genetics/condition/alkaptonuria.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://medlineplus.gov/download/genetics/condition/alkaptonuria.json")
print(res.json())/condition/alkaptonuria.jsonPROBEDPlain-language genetics reference from the NLM, in JSON
/conditionCondition — documented GET route.
/condition/1Condition details by ID (example: 1).
/condition?limit=10Condition — documented GET route.
/condition/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
MedlinePlus Genetics: common questions
Is MedlinePlus Genetics free to use?
Yes — MedlinePlus Genetics is a free health & food API. Free tier: Free — no key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does MedlinePlus Genetics need an API key?
No — MedlinePlus Genetics needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call MedlinePlus Genetics from the browser?
Yes — MedlinePlus Genetics returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is MedlinePlus Genetics up right now?
As of our last scheduled check, MedlinePlus Genetics is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.