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

WebMD Scraper

Extract drug info, condition descriptions, symptom data, and health articles from WebMD. Built on spider-browser .

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

Extract data in minutes.

webmd-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.webmd.com/drugs/2/drug-1/ibuprofen-oral/details");
await page.content();

const data = await page.extractFields({
  name: "h1",
  uses: "#uses-tab .drug-content",
  sideEffects: "#side-effects-tab .drug-content",
  warnings: "#precautions-tab .drug-content",
});

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

Fields you can pull.

Drug nameUsesSide effectsDosageInteractionsWarningsRatingReviews
Content

Medical data extraction

Extract drug info, conditions, and health articles from webmd.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 webmd.com.

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