MedlinePlus Consumer Health Topics Scraper avatar

MedlinePlus Consumer Health Topics Scraper

Pricing

from $0.50 / 1,000 results

Go to Apify Store
MedlinePlus Consumer Health Topics Scraper

MedlinePlus Consumer Health Topics Scraper

$0.5/1K πŸ”₯ MedlinePlus Scraper! Fetch health topics, conditions, symptoms & trusted medical info from MedlinePlus. No key needed. JSON, CSV, Excel or API in seconds. Build a patient-education or health-lookup app ⚑

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

ninhothedev

ninhothedev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

an hour ago

Last modified

Share

Get plain-language, consumer-facing health information straight from the U.S. National Library of Medicine (NLM). This actor searches MedlinePlus via the free, key-less NLM Web Service and returns clean, structured records β€” summaries, alternative titles, MeSH terms, health groups and links β€” ready for patient education tools, health chatbots and accessibility projects.

  • No API key, no login, no account required.
  • English and Spanish health topics (plus drug and genetics collections).
  • Highlight markup and HTML are stripped for you β€” you get clean text.
  • ~$0.50 per 1,000 records (typical), pay-as-you-go.

What makes this different from my other NLM/clinical actors

The NLM publishes many datasets. This actor is the consumer / patient-facing one β€” plain-language explanations written for the general public, not researchers or clinicians. Pick the right tool:

ActorAudienceData
MedlinePlus (this one)Patients & publicPlain-language health topics: summaries, groups, MeSH, links
Clinical Trials ScraperResearchersClinicalTrials.gov study records
NCBI E-utilities ScraperResearchersPubMed / NCBI database records
HPO Phenotype ScraperClinical geneticsHuman Phenotype Ontology terms
NLM Clinical Tables ScraperDevelopers/clinicalCoded clinical lookup tables (ICD, RxNorm…)

In short: the other actors return clinical, coded or research data. This one returns the readable, plain-language health content a patient would actually see on MedlinePlus.

Input

FieldTypeDescription
modeselectOperation mode. Only search is supported.
dbselectCollection: healthTopics (English), healthTopicsSpanish (Spanish), drugs, or genetics. Default healthTopics.
queriesarraySearch terms; each is queried separately. Default ["diabetes","hypertension","asthma"].
maxItemsintegerMax total records across all queries. Default 200, hard cap 3000.
{
"mode": "search",
"db": "healthTopics",
"queries": ["diabetes", "hypertension", "asthma"],
"maxItems": 200
}

Output

Each dataset item is a health_topic record:

{
"type": "health_topic",
"title": "Diabetes",
"alt_titles": ["Diabetes Mellitus", "Sugar Diabetes", "DM"],
"full_summary": "What is diabetes? Diabetes, also known as diabetes mellitus, is a disease in which your blood glucose ...",
"snippet": "What is diabetes? Diabetes, also known as diabetes mellitus, is a disease ...",
"mesh_terms": ["Diabetes Mellitus"],
"groups": ["Older Adults", "Endocrine System", "Metabolic Problems"],
"url": "https://medlineplus.gov/diabetes.html",
"organization": "National Library of Medicine",
"language": "en",
"query": "diabetes",
"rank": 2,
"source": "medlineplus",
"scraped_at": "2026-08-11T00:00:00+00:00"
}

All fields are nullable. full_summary is HTML-stripped and capped at 6000 characters. Highlight tags (<span class="qt0">) are removed from every field.

Use cases

  • Patient education β€” build readable condition explainers and handouts.
  • Health chatbots β€” ground answers in authoritative NLM plain-language text.
  • Plain-language content β€” source reliable, public-domain health copy.
  • Accessibility β€” feed screen-reader-friendly, jargon-free health info.

Data source & licensing

Data comes from the NLM MedlinePlus Web Service (https://wsearch.nlm.nih.gov/ws/query), which is free and requires no key. MedlinePlus content is produced by the U.S. National Library of Medicine and is in the public domain (U.S. Government work). Please review NLM's terms and conditions and attribute the source where appropriate.

Notes

  • This actor does not provide medical advice; it retrieves published NLM content.
  • Pagination is handled automatically via retstart / retmax.