TrustRadius · Example Payload

Trustradius Get Product Reviews Example

B2B Software ReviewsBuyer IntelligenceIntent DataSoftware ReviewsReviewsProduct ReviewsCategories

Trustradius Get Product Reviews Example is an example object payload from TrustRadius, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.trustradius.com/v1/products/salesforce-crm/reviews?companySize=enterprise&minScore=7&perPage=10",
    "headers": {
      "X-API-Key": "YOUR_TRUSTRADIUS_API_KEY",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "reviews": [
        {
          "id": "rev_abc123",
          "title": "Powerful CRM for enterprise sales teams",
          "body": "We have been using Salesforce CRM for over three years across our 500-person sales organization. The platform excels at pipeline management and provides excellent visibility into deal stages across multiple product lines...",
          "trScore": 9,
          "pros": ["Highly customizable", "Excellent reporting", "Strong ecosystem of integrations"],
          "cons": ["Can be complex to administer", "Cost increases quickly as you add users"],
          "createdAt": "2026-03-15T14:22:00Z",
          "verified": true,
          "reviewer": {
            "title": "VP of Sales Operations",
            "industry": "Financial Services",
            "companySize": "enterprise",
            "yearsOfExperience": 3
          },
          "ratings": {
            "overall": 9.0,
            "usability": 8.5,
            "support": 8.0,
            "likelihoodToRecommend": 9.5,
            "valueForMoney": 7.5,
            "featureRichness": 9.5
          }
        }
      ],
      "total": 847,
      "page": 1,
      "perPage": 10
    }
  }
}