# Women's Fashion Brands: Price and New Arrival Tracker

**Use case:** 

A ready-made comparison of four women's fashion brands: Edikted, White Fox Boutique, Cupshe and Oh Polly. For each store you get catalog size, median and range of prices, the share on sale and the average discount, what is sold out, how many products are genuinely new, and how many go up each week. Read live from each store's public catalog, with no account and no API key.

## Input

```json
{
  "stores": [
    "edikted.com",
    "whitefoxboutique.com",
    "cupshe.com",
    "ohpolly.com"
  ],
  "keyword": "hoodie",
  "newWithinDays": "30",
  "maxProductsPerStore": 1000,
  "includeProducts": false
}
```

## Output

```json
{
  "storeName": {
    "label": "Store"
  },
  "domain": {
    "label": "Domain"
  },
  "currency": {
    "label": "Currency"
  },
  "productsAnalyzed": {
    "label": "Products",
    "format": "number"
  },
  "medianPrice": {
    "label": "Median price",
    "format": "number"
  },
  "lowestPrice": {
    "label": "Lowest",
    "format": "number"
  },
  "highestPrice": {
    "label": "Highest",
    "format": "number"
  },
  "productsOnSale": {
    "label": "On sale",
    "format": "number"
  },
  "onSalePercent": {
    "label": "On sale %",
    "format": "number"
  },
  "averageDiscountPercent": {
    "label": "Avg discount %",
    "format": "number"
  },
  "inStockPercent": {
    "label": "In stock %",
    "format": "number"
  },
  "soldOutProducts": {
    "label": "Sold out",
    "format": "number"
  },
  "newProducts": {
    "label": "New products",
    "format": "number"
  },
  "relaunchedProducts": {
    "label": "Re-launched",
    "format": "number"
  },
  "productsAddedPerWeek": {
    "label": "Added / week",
    "format": "number"
  },
  "newestProductAt": {
    "label": "Newest product",
    "format": "date"
  },
  "keywordMatches": {
    "label": "Keyword matches",
    "format": "number"
  },
  "keywordLowestPrice": {
    "label": "Keyword lowest",
    "format": "number"
  },
  "status": {
    "label": "Status"
  },
  "storeUrl": {
    "label": "Store",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Competitor Tracker: Prices, Stock & New Products](https://apify.com/precious_bathmat/shopify-competitor-tracker.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/precious_bathmat/shopify-competitor-tracker.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/precious_bathmat/shopify-competitor-tracker.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`).
