# WellRx Lisinopril Price Scraper

**Use case:** 

Scrape lisinopril drug prices from WellRx with strength, form, pharmacy, price, and ZIP code. Export structured pharmacy pricing data to CSV.

## Input

```json
{
  "maxItems": 50,
  "drug": "lisinopril",
  "zipCode": "60601"
}
```

## Output

```json
{
  "drug_name": {
    "label": "💊 Drug Name",
    "format": "text"
  },
  "strength": {
    "label": "⚖️ Strength",
    "format": "text"
  },
  "form": {
    "label": "🧴 Form",
    "format": "text"
  },
  "pharmacy": {
    "label": "🏪 Pharmacy",
    "format": "text"
  },
  "price": {
    "label": "💵 Price",
    "format": "number"
  },
  "zip_code": {
    "label": "📮 ZIP Code",
    "format": "text"
  },
  "manufacturer": {
    "label": "🏭 Manufacturer",
    "format": "text"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [WellRx Drug Prices Scraper](https://apify.com/parseforge/wellrx-drug-prices-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/wellrx-drug-prices-scraper) to learn more, explore other use cases, and run it yourself.