# Build an India Fashion Trend Pipeline with Myntra

**Use case:** 

Scrape the Myntra catalogue into a trend dataset: brand, name, price, MRP, discount, rating, sizes, colours and image. Track colour, silhouette, brand and price

## Input

```json
{
  "queries": [
    "women kurta"
  ],
  "category": "all",
  "sortBy": "relevance",
  "maxResults": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

## Output

```json
{
  "product_name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "original_price": {
    "label": "MRP",
    "format": "number"
  },
  "discount_percent": {
    "label": "Discount %",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "rating_count": {
    "label": "Reviews",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Myntra Scraper - India Fashion Products, Prices, Ratings](https://apify.com/thirdwatch/myntra-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/thirdwatch/myntra-scraper) to learn more, explore other use cases, and run it yourself.