# Dress Prices Compared Across Four Fashion Brands

**Use case:** 

Who sells the cheapest dress? This ready-made run compares every dress at Oh Polly, Cupshe, White Fox Boutique and Fashion Nova: how many each store sells, the lowest and median price, and a link to the cheapest one, alongside each store's overall prices, discounts and stock. Read live from each store's public catalog, with no account and no API key.

## Input

```json
{
  "stores": [
    "ohpolly.com",
    "cupshe.com",
    "whitefoxboutique.com",
    "fashionnova.com"
  ],
  "keyword": "dress",
  "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`).
