Skip to main content
POST
/
api
/
getapp
/
products
/
reviews
/getapp/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/getapp/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "GetappReview",
    "headline": "<string>",
    "text": "<string>",
    "pros": "<string>",
    "cons": "<string>",
    "advice": "<string>",
    "rating": 123,
    "ratings": {
      "@type": "GetappReviewRatings",
      "value_for_money": 123,
      "functionality": 123,
      "ease_of_use": 123,
      "customer_support": 123,
      "recommendation": 123
    },
    "written_at": 123,
    "source_site": "<string>",
    "vendor_response": "<string>",
    "author": {
      "@type": "GetappReviewAuthor",
      "name": "<string>",
      "job_title": "<string>",
      "company_size": "<string>",
      "industry": "<string>",
      "image": "<string>",
      "is_verified": true
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

GetApp product identifier. Accepts product alias ('zoho-crm'), '{category}/a/{alias}' path, or full product URL.

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

"zoho-crm"

"https://www.getapp.com/customer-management-software/a/zoho-crm/"

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:GetappReview
headline
string | null
text
string | null
pros
string | null
cons
string | null
advice
string | null
rating
number | null
ratings
object | null
written_at
integer | null
source_site
string | null
vendor_response
string | null
author
object | null