# Shopify Product Tracker: New Products, Price Changes & Stock (`frameprobe/shopify-catalog`) Actor

Track any Shopify store's catalog: new products, price changes and what went out of stock. Paste a store URL and get one row per product with prices, variants and stock from the store's public product feed. Run it again to see what changed since your last run.

- **URL**: https://apify.com/frameprobe/shopify-catalog.md
- **Developed by:** [FrameProbe](https://apify.com/frameprobe) (community)
- **Categories:** E-commerce, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$50.00 / 1,000 store catalog reads

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Shopify Product Tracker: New Products, Price Changes & Stock

A Shopify product tracker for any store: one row per product with prices, variants and stock, read
from the store's public product feed. No login, no app to install, no API key. Run it again and each
row says what changed since your last run: new products, price changes, what went out of stock and
what came back.

### What you'd do without this

- Page through the store's feed, and stop before a 40,000-product store runs up your compute.
- Match every variant to last week's, including renamed ones and ones recreated under the same SKU.
- Never report a deletion from a read that stopped early.

### Quickstart

```json
{
  "storeUrls": ["shop.example.com"],
  "maxProductsPerStore": 1000
}
```

Schedule it daily or weekly with the same input and the same history store, and from the second run
on every product row carries its changes.

### What the first run returns

One row per product: `productId`, `handle`, `title`, `productType`, `vendor`; `createdAt`,
`updatedAt` and `publishedAt`, each with its `daysSince...`; `isNew` and `newFrom`; `variantCount`,
`variantsAvailable`, `variantsOutOfStock`, `variantsAvailabilityUnknown`, `anyVariantOutOfStock`,
`variantsOnSale`; `priceMin`, `priceMax`; `catalogComplete`.

`isNew` is judged from the store's own dates, and stores do not all use them the same way, so it is
marked `confidence: "low"`. The first run needs no history to answer.

### What runs two onward add

- `changeSinceLastRun`: `added`, `removed`, `changed` or `unchanged`.
- `variantsAdded`, `variantsRemoved`, `variantsRenamed`, `variantsPriceUp`, `variantsPriceDown`,
  `variantsWentOutOfStock`, `variantsBackInStock`, `variantsUnmatched`, and `priceMinBefore` /
  `priceMaxBefore` beside today's prices.
- A product reads `unchanged` only when every variant paired with last run's and none moved.
- A removed product gets its own row, and only when this run read the whole catalog.

### Store rows

Each store ends with one row where `rowType` is `store`. It says whether the feed was read
(`status`: `ok`, `failed` or `skipped`), how many products (`productsRead`), whether the read reached
the end of the catalog (`catalogComplete`), and if not read, why (`error`). A store with an empty
catalog still gets its store row, so no store you asked for is ever missing from the output.

Every row carries every key. A value that does not apply is `null`, never a missing key.

### Example product row, second run

```json
{
  "rowType": "product",
  "storeUrl": "https://shop.example.com",
  "status": "ok",
  "error": null,
  "productsRead": null,
  "productId": "7391234567890",
  "handle": "classic-crew-sock",
  "title": "Classic Crew Sock",
  "productType": "Socks",
  "vendor": "Example Co",
  "checkedAt": "2026-09-10T16:00:00Z",
  "createdAt": "2025-03-02T17:04:11Z",
  "updatedAt": "2026-09-10T15:28:55Z",
  "publishedAt": "2026-08-20T16:00:00Z",
  "daysSinceCreated": 556,
  "daysSinceUpdated": 0,
  "daysSincePublished": 21,
  "isNew": true,
  "newFrom": "published_at",
  "variantCount": 6,
  "variantsAvailable": 5,
  "variantsOutOfStock": 1,
  "variantsAvailabilityUnknown": 0,
  "anyVariantOutOfStock": true,
  "variantsOnSale": 2,
  "priceMin": "18.00",
  "priceMax": "22.00",
  "changeSinceLastRun": "changed",
  "productRenamed": false,
  "variantsAdded": 0,
  "variantsRemoved": 0,
  "variantsRenamed": 0,
  "variantsPriceUp": 0,
  "variantsPriceDown": 2,
  "variantsWentOutOfStock": 1,
  "variantsBackInStock": 0,
  "variantsUnmatched": 0,
  "priceMinBefore": "20.00",
  "priceMaxBefore": "22.00",
  "catalogComplete": true,
  "basis": "snapshot",
  "confidence": "high",
  "caveats": [
    "public products only: anything the store has hidden, unpublished or put behind a password is not listed here",
    "isNew is judged from the store's own published_at timestamp, whose meaning has not been verified against a live store; see basis",
    "a product the store hid since your last run is indistinguishable here from one it deleted, so this leans toward reporting REMOVED"
  ]
}
```

### What it can't do, and which way it leans

- **A hidden product reads exactly like a deleted one, so removals are over-reported.**
- **If the store removes or hides a product while a run is reading its catalog, one other product
  that is still for sale can be missed, and it shows as removed.** This leans the same way as the
  line above: toward removals that did not happen. If a product shows as removed and is back on
  your next run, check it before you act on the removal. Every removed row says this in its
  `caveats`.
- **Some stores do not serve their public product feed.** For those, the run reports the store as
  failed, never as an empty catalog, so a store that refuses is never read as one that deleted
  everything. A failed store is not charged.
- Password-protected stores and unpublished products are invisible to it.
- The feed does not say which currency its prices are in, so there is no currency column. Prices
  are exactly as the store wrote them.
- Stock is yes or no per variant. The feed carries no quantities.

### Two separate limits, neither inferred from the other

`maxProductsPerStore` caps how much of each catalog is read. A store bigger than that is read up to
the cap and marked incomplete, and no removals are reported for it on that run. `newWithinDays`
only decides what counts as new. Changing one never changes the other.

**Reading close to 10,000 products per store needs more than the default 512 MB of memory: set the
run to 1024 MB first.** Our test read of 10,000 products from one store peaked at 431 MB, 84% of the
default (measured on a local machine, not on Apify).

### Where your history lives

In a named key-value store in your own Apify account, `shopify-catalog` unless you set
`historyStoreName`. It holds the last catalog read from each store, as the product objects the store
served. It is yours: read it, export it, or delete it to start over. Use a different name to keep
separate histories side by side.

A store that fails on a run leaves its saved catalog untouched, so the next run still compares
against the last catalog that was really read.

### Pricing

One charge per store whose feed was read, whatever the catalog size. A store that refuses its feed,
cannot be reached, or is skipped because your run's maximum charge had no room for it is not
charged. There is no start fee. The amount is on the Pricing tab.

### Input

| Field | What it does |
|---|---|
| `storeUrls` | One or more store addresses. Also accepted as `storeUrl`, `stores`, `store`, `urls`, `url`, `domains`, `domain` or `startUrls`, as a string, a list, or a list of `{"url": ...}` objects. Commas and new lines split a string. Up to 100 stores a run |
| `newWithinDays` | Days within which a product counts as new. Default 30 |
| `maxProductsPerStore` | Hard cap on products read per store. Default 1,000 |
| `historyStoreName` | Your key-value store for the history. Default `shopify-catalog` |

# Actor input Schema

## `storeUrls` (type: `array`):

One or more Shopify store addresses, such as shop.example.com or https://shop.example.com. A pasted product or collection page works too: only the store's address is used. Each store is read and charged separately. A store that does not serve its public product feed is reported as failed and is not charged. Up to 100 stores per run.

## `newWithinDays` (type: `integer`):

A product counts as new when the store's published date for it (or its created date, if there is no published date) is at most this many days before the run. Stores do not all use those dates the same way, so this column is marked low confidence. 'Added since your last run' does not use it: that comes from comparing two runs.

## `maxProductsPerStore` (type: `integer`):

A hard stop on how much of each store's catalog is read. A store with more products than this is read up to the limit and marked incomplete, and nothing is reported as removed for it on that run. It does not change what you are charged: the price is per store.

## `historyStoreName` (type: `string`):

The named key-value store IN YOUR ACCOUNT where the last catalog read from each store is kept, so the next run can say what changed. Keep the default to track changes across runs. Change it to keep separate histories side by side. Lowercase letters, digits and hyphens. The data is yours: you can read, export or delete it without this Actor.

## Actor input object example

```json
{
  "storeUrls": [
    "https://www.allbirds.com"
  ],
  "newWithinDays": 30,
  "maxProductsPerStore": 1000,
  "historyStoreName": "shopify-catalog"
}
```

# Actor output Schema

## `products` (type: `string`):

Product rows carry prices, variant and stock counts, the store's own dates, and from the second run on, what changed since your last run. Each store ends with a rowType store row saying whether its feed was read, how many products, and whether the read reached the end of the catalog. A store that refused its feed has a failed store row with the reason and is not charged.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "storeUrls": [
        "https://www.allbirds.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("frameprobe/shopify-catalog").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "storeUrls": ["https://www.allbirds.com"] }

# Run the Actor and wait for it to finish
run = client.actor("frameprobe/shopify-catalog").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "storeUrls": [
    "https://www.allbirds.com"
  ]
}' |
apify call frameprobe/shopify-catalog --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,frameprobe/shopify-catalog"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/I3K6ilRq7hznHPJYI/builds/4gUQLYzAA97jZSgbM/openapi.json
