# Get B2B Software Reviews by API from Product URLs

**Use case:** 

Paste product review URLs, get rows back: productName, reviewRating, reviewTitle, authorPosition, authorCompanySize, authorCompanyIndustry, reviewUrl.

## Input

```json
{
  "mode": "product",
  "reviewUrls": [
    "https://www.trustradius.com/reviews/zoominfo-sales-2025-04-15-13-25-48"
  ],
  "productUrls": [
    "https://www.trustradius.com/products/asana/reviews",
    "https://www.trustradius.com/products/hubspot-crm/reviews",
    "https://www.trustradius.com/products/slack/reviews"
  ],
  "maxReviewsPerProduct": 1,
  "pages": 1
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "string"
  },
  "reviewRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "string"
  },
  "authorPosition": {
    "label": "Reviewer role",
    "format": "string"
  },
  "authorCompanySize": {
    "label": "Reviewer's company size",
    "format": "string"
  },
  "authorCompanyIndustry": {
    "label": "Reviewer's industry",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  }
}
```

## About this Actor

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