# Myntra Customer Reviews Extractor

**Use case:** 

Collect up to 100 detailed customer reviews and ratings from Myntra product pages. Access insights for analysis and product research.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.myntra.com/jeans/denimlook/denimlook-men-relaxed-fit-stretchable-jeans/31798517/buy"
    }
  ],
  "reviewsLimit": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "userRating": {
    "label": "Rating",
    "format": "text"
  },
  "review": {
    "label": "Review Text",
    "format": "text"
  },
  "userName": {
    "label": "User Name",
    "format": "text"
  },
  "upvotes": {
    "label": "Upvotes",
    "format": "text"
  },
  "downvotes": {
    "label": "Downvotes",
    "format": "text"
  },
  "canEdit": {
    "label": "Can Edit",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "rejectedReason": {
    "label": "Rejected Reason",
    "format": "text"
  },
  "updatedAt": {
    "label": "Updated At",
    "format": "text"
  },
  "images": {
    "label": "Images",
    "format": "text"
  },
  "videos": {
    "label": "Videos",
    "format": "text"
  },
  "styleAttribute": {
    "label": "Style Attributes",
    "format": "text"
  },
  "userStyleAnswer": {
    "label": "User Style Answers",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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