docs / trustradius
TrustRadius
B2B software reviews and ratings.
base /trustradius/v13 endpoints
post
/trustradius/v1/product/reviews1 creditreviews + ratings for a product
| Parameter | Required |
|---|---|
| product_slug | required |
| source | optional |
| skip | optional |
| limit | optional |
| fetch_all | optional |
| include_non_public | optional |
post
/trustradius/v1/product/detail1 creditproduct metadata (rating, category, vendor)
| Parameter | Required |
|---|---|
| product_slug | required |
| source | optional |
| category_path | optional |
post
/trustradius/v1/product/resolvefreeresolve a TrustRadius/GetApp/Capterra/G2 URL → source + slug
| Parameter | Required |
|---|---|
| url | required |
Example request · product/reviews
curl -X POST https://api.reefapi.com/trustradius/v1/product/reviews \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"source":"trustradius","product_slug":"slack","fetch_all":true}'Response shape
{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}