# Prescription Discount Card Prices

**Use case:** 

Compare atorvastatin pickup prices and get printable coupon details for ZIP code 10001.

## Input

```json
{
  "medications": [
    "atorvastatin"
  ],
  "zipCodes": [
    "10001"
  ],
  "deliveryModes": [
    "pickup"
  ],
  "sortBy": "price",
  "maxOffers": 10,
  "includePrintableCouponDetails": true,
  "__isDebug": false
}
```

## Output

```json
{
  "medicationName": {
    "label": "Medication",
    "format": "string"
  },
  "genericName": {
    "label": "Generic name",
    "format": "string"
  },
  "form": {
    "label": "Form",
    "format": "string"
  },
  "dosage": {
    "label": "Dosage",
    "format": "string"
  },
  "quantity": {
    "label": "Quantity",
    "format": "number"
  },
  "zipCode": {
    "label": "ZIP code",
    "format": "string"
  },
  "deliveryMode": {
    "label": "Delivery mode",
    "format": "string"
  },
  "pharmacyName": {
    "label": "Pharmacy",
    "format": "string"
  },
  "pharmacyType": {
    "label": "Pharmacy type",
    "format": "string"
  },
  "pharmacyLogoUrl": {
    "label": "Pharmacy logo",
    "format": "string"
  },
  "pharmacyAddress": {
    "label": "Address",
    "format": "string"
  },
  "distanceMiles": {
    "label": "Distance (miles)",
    "format": "number"
  },
  "prices": {
    "label": "Prices",
    "format": "array"
  },
  "printableCoupon": {
    "label": "Printable coupon",
    "format": "object"
  },
  "sourceUrl": {
    "label": "GoodRx page",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [GoodRx Drug Price Scraper](https://apify.com/maximedupre/goodrx) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/goodrx) to learn more, explore other use cases, and run it yourself.