# Find generic drugs with big price increases (NADAC)

**Use case:** 

Scan Medicaid NADAC pricing for drugs whose per-unit acquisition cost rose 10%+ in the last 180 days — NDC, old/new price and percent change.

## Input

```json
{
  "drugName": "atorvastatin",
  "daysBack": 180,
  "minPctChange": 10,
  "direction": "up",
  "maxResults": 200
}
```

## Output

```json
{
  "ndc": {
    "label": "NDC",
    "format": "string"
  },
  "ndc_description": {
    "label": "NDC description",
    "format": "string"
  },
  "latest_price": {
    "label": "Latest price",
    "format": "number"
  },
  "previous_price": {
    "label": "Previous price",
    "format": "number"
  },
  "pct_change": {
    "label": "Percent change",
    "format": "number"
  },
  "abs_change": {
    "label": "Absolute change",
    "format": "number"
  },
  "direction": {
    "label": "Direction",
    "format": "string"
  },
  "weeks_of_history": {
    "label": "Weeks of history",
    "format": "number"
  },
  "latest_date": {
    "label": "Latest date",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [NADAC Drug Pricing API — Weekly NDC Price Movers](https://apify.com/malonestar/nadac-price-movers) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/nadac-price-movers) to learn more, explore other use cases, and run it yourself.