# Home Goods Brands: Price and Assortment Comparison

**Use case:** 

A ready-made comparison of four home goods brands: Brooklinen, Bearaby, The Sill and Great Jones. For each store you get catalog size, median and range of prices, how much is marked down and by how much, the share that is sold out, and how many products are new. Read live from each store's public catalog, with no account and no API key.

## Input

```json
{
  "stores": [
    "brooklinen.com",
    "bearaby.com",
    "thesill.com",
    "greatjonesgoods.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`).
