Skip to main content
POST
/
api
/
trustradius
/
products
/
reviews
/trustradius/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/trustradius/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@trustradius_review",
    "title": "<string>",
    "url": "<string>",
    "rating": 123,
    "written_at": "<string>",
    "incentive": "<string>",
    "use_cases": "<string>",
    "pros": [],
    "cons": [],
    "likelihood_to_recommend": "<string>",
    "reviewer": {
      "@type": "@trustradius_reviewer",
      "id": "<string>",
      "name": "<string>",
      "job_title": "<string>",
      "job_type": "<string>",
      "department": "<string>",
      "company_name": "<string>",
      "company_size": "<string>",
      "image": "<string>",
      "linkedin_url": "<string>",
      "is_verified": true,
      "years_experience": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

TrustRadius product identifier. Accepts a product slug ('salesforce-agentforce-sales') or full product URL ('https://www.trustradius.com/products/salesforce-agentforce-sales/reviews').

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|//[^\s]+|(?:www\.)?trustradius\.com[^\s]*|[a-z0-9][a-z0-9-]*)$
Examples:

"salesforce-agentforce-sales"

"https://www.trustradius.com/products/salesforce-agentforce-sales/reviews"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@trustradius_review
title
string | null
url
string | null
rating
number | null
written_at
string | null
incentive
string | null
use_cases
string | null
pros
string[]
cons
string[]
likelihood_to_recommend
string | null
reviewer
TrustradiusReviewer · object