# Monitor a competitor's Shopify prices

**Use case:** 

Run this on a schedule and each run returns the competitor's current prices, list prices and stock for every variant in the collection you point it at. Diff two runs to see exactly what moved: markdowns, restocks, new arrivals and quiet price rises. Prices come back as integers in minor units, so comparisons never suffer floating-point drift.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://kith.com/collections/kith-tops"
    }
  ],
  "maxRequestsPerCrawl": 200,
  "maxResults": 0,
  "maxRecommendationsPerProduct": 0,
  "grabRealInventory": false,
  "maxInventoryFetches": 200,
  "grabStorefrontDetail": false,
  "maxStorefrontFetches": 200,
  "proxy": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "source.canonicalUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price.current": {
    "label": "Price (minor units)",
    "format": "number"
  },
  "priceRange.min": {
    "label": "Min (minor units)",
    "format": "number"
  },
  "priceRange.max": {
    "label": "Max (minor units)",
    "format": "number"
  },
  "price.stockStatus": {
    "label": "Stock",
    "format": "text"
  },
  "fullyOutOfStock": {
    "label": "All variants out of stock",
    "format": "boolean"
  },
  "source.currency": {
    "label": "Currency",
    "format": "text"
  },
  "source.retailer": {
    "label": "Retailer",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Scraper](https://apify.com/autofacts/shopify.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/autofacts/shopify.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/autofacts/shopify.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`).
