Skip to main content
POST
/
api
/
capterra
/
products
/
reviews
/capterra/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/capterra/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 5000,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@capterra_review",
    "global_id": "<string>",
    "title": "<string>",
    "text": "<string>",
    "pros": "<string>",
    "cons": "<string>",
    "advice": "<string>",
    "rating": 123,
    "ratings": {
      "@type": "@capterra_review_ratings",
      "ease_of_use": 123,
      "customer_support": 123,
      "functionality": 123,
      "value_for_money": 123
    },
    "recommendation_rating": 123,
    "written_date": "<string>",
    "incentive": "<string>",
    "is_anonymous": true,
    "source_site": "<string>",
    "source_code": "<string>",
    "source_tooltip": "<string>",
    "chosen_reason": "<string>",
    "switching_reason": "<string>",
    "switched_from": [],
    "alternatives": [],
    "vendor_response": "<string>",
    "author": {
      "@type": "@capterra_review_author",
      "name": "<string>",
      "job_title": "<string>",
      "company_size": "<string>",
      "industry": "<string>",
      "used_for": "<string>",
      "image": "<string>",
      "is_linkedin_verified": true,
      "is_validated": true,
      "validations": [],
      "is_anonymous": true
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Capterra product identifier. Accepts seo_id ('176586'), seo_id/alias ('176586/Power-BI'), or full product URL ('https://www.capterra.com/p/176586/Power-BI/').

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|//[^\s]+|(?:www\.|capterra\.com)[^\s]*|\d+(?:/[^\s/?#]+)?)$
Examples:

"176586"

"176586/Power-BI"

"https://www.capterra.com/p/176586/Power-BI/"

count
integer
required

Max number of reviews to return

Required range: 1 <= x <= 10000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@capterra_review
global_id
string | null
title
string | null
text
string | null
pros
string | null
cons
string | null
advice
string | null
rating
number | null
ratings
CapterraReviewRatings · object
recommendation_rating
number | null
written_date
string | null
incentive
string | null
is_anonymous
boolean | null
source_site
string | null
source_code
string | null
source_tooltip
string | null
chosen_reason
string | null
switching_reason
string | null
switched_from
CapterraReviewProduct · object[]
alternatives
CapterraReviewProduct · object[]
vendor_response
string | null
author
CapterraReviewAuthor · object