# Forever21 Dress Price Tracker

**Use case:** 

Collect detailed data on Forever21 dresses, including prices, sizes, images, and stock status. Get structured JSON data ready for analysis.

## Input

```json
{
  "startUrl": "https://www.forever21.com/collections/all",
  "keyword": "dress",
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "product_id": {
    "label": "Product ID",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "vendor": {
    "label": "Vendor",
    "format": "string"
  },
  "product_type": {
    "label": "Product Type",
    "format": "string"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "price_min": {
    "label": "Minimum Price",
    "format": "number"
  },
  "price_max": {
    "label": "Maximum Price",
    "format": "number"
  },
  "primary_image": {
    "label": "Primary Image",
    "format": "string"
  },
  "variants_count": {
    "label": "Variants Count",
    "format": "integer"
  },
  "description_text": {
    "label": "Description",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Forever21 Product Scraper 🛍️](https://apify.com/shahidirfan/forever21-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/forever21-product-scraper) to learn more, explore other use cases, and run it yourself.