Skip to main content
POST
/
api
/
softwareadvice
/
products
/
reviews
/softwareadvice/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/softwareadvice/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "SoftwareadviceReview",
    "headline": "<string>",
    "text": "<string>",
    "pros": "<string>",
    "cons": "<string>",
    "rating": 123,
    "ease_of_use_rating": 123,
    "customer_support_rating": 123,
    "functionality_rating": 123,
    "value_for_money_rating": 123,
    "frequency_of_using": "<string>",
    "used_for": "<string>",
    "reason_for_choosing": "<string>",
    "reason_for_switching": "<string>",
    "incentive": "<string>",
    "is_anonymous": true,
    "written_at": 123,
    "vendor_response": "<string>",
    "author": {
      "@type": "SoftwareadviceReviewAuthor",
      "name": "<string>",
      "company_size": "<string>",
      "industry": "<string>",
      "is_validated": true,
      "image": "<string>"
    },
    "previous_versions": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Software Advice product identifier. Accepts the category-scoped profile path ('crm/zoho-crm-profile' or '/crm/zoho-crm-profile/') or the full profile URL.

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

"crm/zoho-crm-profile"

"https://www.softwareadvice.com/crm/zoho-crm-profile/"

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:SoftwareadviceReview
headline
string | null
text
string | null
pros
string | null
cons
string | null
rating
number | null
ease_of_use_rating
number | null
customer_support_rating
number | null
functionality_rating
number | null
value_for_money_rating
number | null
frequency_of_using
string | null
used_for
string | null
reason_for_choosing
string | null
reason_for_switching
string | null
incentive
string | null
is_anonymous
boolean | null
written_at
integer | null
vendor_response
string | null
author
object | null
previous_versions
array