# OMR product reviews scraper example

**Use case:** 

Scrape public OMR software reviews with ratings, reviewer and company context, pros, cons, use cases, replies, videos, and source statistics.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://omr.com/en/reviews/product/hubspot-sales-hub"
    }
  ],
  "maxReviewsPerProduct": 50,
  "sortBy": "date",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "productTitle": {
    "label": "Product",
    "format": "string"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "string"
  },
  "recommendationScore": {
    "label": "Recommendation",
    "format": "integer"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "reviewerFirstName": {
    "label": "Reviewer first name",
    "format": "string"
  },
  "reviewerLastName": {
    "label": "Reviewer last name",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "companyRole": {
    "label": "Role",
    "format": "string"
  },
  "companySize": {
    "label": "Company size",
    "format": "string"
  },
  "companyIndustry": {
    "label": "Industry",
    "format": "string"
  },
  "incentivized": {
    "label": "Incentivized",
    "format": "boolean"
  },
  "positive": {
    "label": "Positive",
    "format": "string"
  },
  "negative": {
    "label": "Negative",
    "format": "string"
  },
  "problemsSolved": {
    "label": "Problems solved",
    "format": "string"
  },
  "useCases": {
    "label": "Use cases",
    "format": "array"
  },
  "customerSupportScore": {
    "label": "Support score",
    "format": "integer"
  },
  "easeOfSetupScore": {
    "label": "Setup score",
    "format": "integer"
  },
  "easeOfUseScore": {
    "label": "Ease-of-use score",
    "format": "integer"
  },
  "requirementsScore": {
    "label": "Requirements score",
    "format": "integer"
  },
  "rightDirection": {
    "label": "Right direction",
    "format": "string"
  },
  "reviewerAnonymous": {
    "label": "Anonymous",
    "format": "boolean"
  },
  "isTextRedacted": {
    "label": "Text redacted",
    "format": "boolean"
  },
  "vendorReply": {
    "label": "Vendor reply",
    "format": "string"
  },
  "vendorReplySender": {
    "label": "Reply sender",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video",
    "format": "string"
  },
  "videoName": {
    "label": "Video name",
    "format": "string"
  },
  "videoContentType": {
    "label": "Video type",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review source",
    "format": "string"
  },
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "productSlug": {
    "label": "Product slug",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "productReviewCount": {
    "label": "Available reviews",
    "format": "integer"
  },
  "sourcePage": {
    "label": "Source page",
    "format": "integer"
  },
  "sourceTotalPages": {
    "label": "Source pages",
    "format": "integer"
  },
  "recommendationScoreBad": {
    "label": "Bad ratings",
    "format": "integer"
  },
  "recommendationScoreWorse": {
    "label": "Worse ratings",
    "format": "integer"
  },
  "recommendationScoreGood": {
    "label": "Good ratings",
    "format": "integer"
  },
  "recommendationScoreBetter": {
    "label": "Better ratings",
    "format": "integer"
  },
  "recommendationScoreBest": {
    "label": "Best ratings",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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