Netmeds Product Scraper 🏥 avatar

Netmeds Product Scraper 🏥

Try for free

6 hours trial then $19.99/month - No credit card required now

Go to Store
Netmeds Product Scraper 🏥

Netmeds Product Scraper 🏥

easyapi/netmeds-product-scraper
Try for free

6 hours trial then $19.99/month - No credit card required now

Powerful scraper for Netmeds.com that extracts detailed product information including prices, manufacturers, brands, and inventory status. Perfect for healthcare market research, price monitoring, and catalog enrichment. Supports infinite scroll and provides comprehensive product data. 🏥

Developer
Maintained by Community

Actor Metrics

  • 4 monthly users

  • No reviews yet

  • No bookmarks yet

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 8 days ago

📋 What does Netmeds Product Scraper do?

This actor scrapes detailed product information from Netmeds.com, India's leading online pharmacy and healthcare platform. It extracts comprehensive data about medicines, healthcare products, and wellness items, including pricing, availability, manufacturer details, and more.

✨ Key Features

  • 🔍 Scrapes product details from any Netmeds search results page
  • 💊 Captures complete product information including pricing, discounts, and inventory status
  • 🏢 Extracts manufacturer and brand details
  • 📦 Includes product specifications, ratings, and categories
  • 🔄 Supports infinite scroll pagination
  • ⚡ High-performance with built-in proxy rotation
  • 🛡️ Uses advanced browser automation techniques to avoid blocking

💎 Output Data Structure

The actor provides rich product data including:

  • Product basic information (name, code, URL)
  • Pricing details (MRP, selling price, discounts)
  • Manufacturer and brand information
  • Product specifications (type, formulation, pack size)
  • Inventory status and availability
  • Category hierarchy
  • Product ratings and popularity metrics
  • Image URLs

🔧 Input Parameters

  • searchUrls: Array of Netmeds search result URLs to scrape
  • maxItems: Maximum number of items to scrape (optional)
  • proxyConfiguration: Proxy settings (optional)

📊 Use Cases

  • Price monitoring and competitive analysis
  • Product catalog enrichment
  • Market research and analysis
  • Inventory tracking
  • Healthcare product analytics

💡 Tips

  • Use specific search URLs for targeted product categories
  • Adjust maxItems parameter based on your needs
  • Consider using proxy configuration for better reliability

Input Example

A full explanation of an input example in JSON.

1{
2    "searchUrls": [
3        "https://www.netmeds.com/catalogsearch/result/nutritional/all?prod_meds"
4    ],
5    "maxItems": 50
6}

Output sample

The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2    {
3        "searchUrl": "https://www.netmeds.com/catalogsearch/result/nutritional/all?prod_meds",
4        "productCode": 38061,
5        "name": "B-Protin Nutritional Powder Supplement - Chocolate 500 gm",
6        "manufacturer": {
7            "id": 2147,
8            "name": "British Biologicals",
9            "urlPath": "/manufacturers/british-biologicals"
10        },
11        "brand": {
12            "id": 133,
13            "name": "B-Protin",
14            "urlPath": "/brands/b-protin"
15        },
16        "pricing": {
17            "mrp": 645,
18            "sellingPrice": 535.35,
19            "discount": {
20                "amount": 109.65,
21                "percentage": 17,
22                "rate": 0.17
23            }
24        },
25        "product": {
26            "type": "O",
27            "formulation": "powder",
28            "packSize": "500GM",
29            "urlPath": "/non-prescriptions/b-protin-chocolate-powder-500gm",
30            "rating": "4.9",
31            "imageUrl": "images/product-v1/150x150/38061/b_protin_nutritional_powder_supplement_chocolate_500_gm_0.jpg"
32        },
33        "inventory": {
34            "inStock": true,
35            "maxQuantityPerOrder": 6,
36            "availabilityStatus": "A",
37            "isColdStorage": false,
38            "rxRequired": false
39        },
40        "categories": {
41            "ids": [
42                98,
43                500,
44                501,
45                503
46            ],
47            "names": [
48                "Non-Prescription",
49                "Fitness",
50                "Family Nutrition",
51                "General Health"
52            ],
53            "tree": {
54                "level0": [
55                    "Non-Prescription"
56                ],
57                "level1": [
58                    "Non-Prescription///Fitness"
59                ],
60                "level2": [
61                    "Non-Prescription///Fitness///Family Nutrition"
62                ],
63                "level3": [
64                    "Non-Prescription///Fitness///Family Nutrition///General Health"
65                ]
66            }
67        },
68        "popularity": {
69            "score": 4,
70            "soldQuantity": 1923
71        }
72    },
73    ...
74]