# Microsoft Power BI TrustRadius review extractor

**Use case:** 

Extract public Microsoft Power BI TrustRadius reviews by product slug for competitive research and customer sentiment analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.trustradius.com/products/salesforce-crm-analytics/reviews/all"
    }
  ],
  "productSlugs": [
    "microsoft-power-bi"
  ],
  "maxReviewsPerProduct": 20,
  "requestDelayMs": 250
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "aggregateRating": {
    "label": "Product rating",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Review",
    "format": "text"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewDate": {
    "label": "Date",
    "format": "date"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "reviewerJobTitle": {
    "label": "Role",
    "format": "text"
  },
  "reviewerCompanySize": {
    "label": "Company size",
    "format": "text"
  },
  "isVetted": {
    "label": "Vetted",
    "format": "boolean"
  },
  "isIncentivized": {
    "label": "Incentivized",
    "format": "boolean"
  },
  "experienceDuration": {
    "label": "Experience",
    "format": "text"
  },
  "useCase": {
    "label": "Use case",
    "format": "text"
  },
  "pros": {
    "label": "Pros",
    "format": "text"
  },
  "cons": {
    "label": "Cons",
    "format": "text"
  },
  "likelihoodToRecommend": {
    "label": "Recommendation",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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