# Price and stock by SKU across Shopify stores

**Use case:** 

One row per variant instead of per product: every size or colour with its own SKU, price, compare-at price and in-stock flag. The id field is stable, so running this on a schedule and diffing two runs gives you price changes and stock-outs per SKU.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.allbirds.com"
    },
    {
      "url": "https://www.deathwishcoffee.com"
    }
  ],
  "rowPer": "variant",
  "includeInventory": false,
  "keywords": [],
  "onlyAvailable": false,
  "onlyOnSale": false,
  "onlyChanges": false,
  "includeRemoved": true,
  "maxItems": 500,
  "maxConcurrency": 5,
  "useProxy": true
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "vendor": {
    "label": "Vendor",
    "format": "string"
  },
  "price_min": {
    "label": "Price",
    "format": "number"
  },
  "compare_at_price_max": {
    "label": "Compare at",
    "format": "number"
  },
  "discount_percent": {
    "label": "Discount %",
    "format": "number"
  },
  "available": {
    "label": "In stock",
    "format": "boolean"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "store": {
    "label": "Store",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Products Scraper & API: $1 per 1,000 rows](https://apify.com/dododata/shopify-products-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dododata/shopify-products-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/dododata/shopify-products-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
