# Wholesale Trends Product Finder Task

**Use case:** 

Identify winning products on Faire.com with refined metrics. This task scans the Home Decor category, scoring products from 0 to 100 based on real-time buyer behavior like review velocity and restock signals. Get actionable insights to select profitable items that are already in demand without committing to large orders.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.faire.com/category/Home%20Decor"
    }
  ],
  "directProductUrls": [
    "https://www.faire.com/product/p_ng852dgfws",
    "https://www.faire.com/product/p_cb72jqmgaj"
  ],
  "maxProductsToScan": 20,
  "minProductReviewsThreshold": 3,
  "winnerScoreThreshold": 50,
  "restockKeywords": [
    "reorder",
    "restock",
    "sold out",
    "ordered again",
    "back in stock",
    "sold on the first",
    "sell well",
    "selling fast"
  ],
  "velocityWindowDays": 365,
  "useApifyProxy": false,
  "proxyGroups": [
    "RESIDENTIAL"
  ],
  "maxConcurrency": 1,
  "maxRequestsPerMinute": 60
}
```

## Output

```json
{
  "productName": {
    "label": "Product name",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price": {
    "label": "Price (USD)",
    "format": "number"
  },
  "winnerScore": {
    "label": "Winner Score (/100)",
    "format": "number"
  },
  "velocityScore": {
    "label": "Velocity Score (/40)",
    "format": "number"
  },
  "restockIndex": {
    "label": "Restock Index (/30)",
    "format": "number"
  },
  "barrierToEntry": {
    "label": "Barrier To Entry (/15)",
    "format": "number"
  },
  "satisfactionRatio": {
    "label": "Satisfaction Ratio (/15)",
    "format": "number"
  },
  "productReviewsCount": {
    "label": "Reviews count (tab header, Faire)",
    "format": "integer"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "scannedAt": {
    "label": "Scanned at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Wholesale Trends Product Finder](https://apify.com/stellaboost/wholesale-trends-product-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/stellaboost/wholesale-trends-product-finder.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/stellaboost/wholesale-trends-product-finder.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`).
