Skip to main content gottem  — one API for every scraper.
Health
Verified

Healthline Scraper

Extract health articles, condition guides, nutrition data, and wellness content from Healthline. Built on spider-browser .

Get started Docs
target
healthline.com
success rate
99.9%
latency
~4ms
Quick start

Extract data in minutes.

healthline-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.healthline.com/nutrition");
await page.content();

const data = await page.evaluate(`(() => {
  const articles = [];
  document.querySelectorAll("[data-testid='card']").forEach(el => {
    const title = el.querySelector("h2, h3")?.textContent?.trim();
    const link = el.querySelector("a")?.href;
    const category = el.querySelector("[class*='category']")?.textContent?.trim();
    if (title) articles.push({ title, link, category });
  });
  return JSON.stringify({ total: articles.length, articles: articles.slice(0, 15) });
})()`);

console.log(JSON.parse(data));
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Article titleAuthorReviewed byCategorySummarySectionsSourcesLast updated
Content

Medical data extraction

Extract drug info, conditions, and health articles from healthline.com.

Parsing

Structured health data

Clean extraction of dosage, interactions, and clinical information.

Scale

Bulk research

Process thousands of medical pages for research and comparison datasets.

Related

More Health scrapers.

Start

Start scraping healthline.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.