MedlinePlus Genetics

Plain-language genetics reference from the NLM, in JSON

🩺 Health & FoodUNMONITOREDchecked 14 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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>"
      }
    }
  ]
}
Call itcurl · fetch · python
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())
Endpoints · 5On scheduleFULL DOCS ↗
First rollup pending — GET /condition/alkaptonuria.json has been probed
GET/condition/alkaptonuria.jsonPROBED

Plain-language genetics reference from the NLM, in JSON

GET/condition

Condition — documented GET route.

GET/condition/1

Condition details by ID (example: 1).

GET/condition?limit=10

Condition — documented GET route.

GET/condition/search?q=test

Search by query parameters.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.