Skip to main content
POST
/
api
/
sitejabber
/
businesses
/
reviews
/sitejabber/businesses/reviews
curl --request POST \
  --url https://api.anysite.io/api/sitejabber/businesses/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "business": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@sitejabber_review",
    "review_no": 123,
    "title": "<string>",
    "text": "<string>",
    "tip": "<string>",
    "rating": 123,
    "published_at": "<string>",
    "experience_date": "<string>",
    "is_verified": false,
    "source": "<string>",
    "positive_vote_count": 123,
    "negative_vote_count": 123,
    "comment_count": 123,
    "view_count": 123,
    "author": {
      "id": 123,
      "@type": "@sitejabber_review_author",
      "first_name": "<string>",
      "last_name": "<string>",
      "alias": "<string>",
      "review_count": 123,
      "positive_vote_count": 123,
      "image": "<string>",
      "is_identity_verified": false
    },
    "business_reply": {
      "id": 123,
      "@type": "@sitejabber_business_reply",
      "text": "<string>",
      "published_at": "<string>",
      "vote_count": 123,
      "author": {
        "id": 123,
        "@type": "@sitejabber_review_author",
        "first_name": "<string>",
        "last_name": "<string>",
        "alias": "<string>",
        "review_count": 123,
        "positive_vote_count": 123,
        "image": "<string>",
        "is_identity_verified": false
      }
    },
    "dimension_ratings": [],
    "attributes": [],
    "location": {
      "@type": "@sitejabber_review_location",
      "country_code": "<string>",
      "country": "<string>",
      "region": "<string>"
    },
    "products_used": [],
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
business
string
required

Business domain ('amazon.com') or full review page URL

Minimum string length: 1
Pattern: ^(?:https?://)?(?:www\.)?[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}(?:[/?#].*)?$
Examples:

"amazon.com"

"fashionnova.com"

count
integer
required

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
integer
required
@type
string
default:@sitejabber_review
review_no
integer | null
title
string | null
text
string | null
tip
string | null
rating
integer | null
published_at
string | null
experience_date
string | null
is_verified
boolean
default:false
source
string | null
positive_vote_count
integer | null
negative_vote_count
integer | null
comment_count
integer | null
view_count
integer | null
author
SitejabberReviewAuthor · object
business_reply
SitejabberBusinessReply · object
dimension_ratings
SitejabberReviewDimensionRating · object[]
attributes
SitejabberReviewAttribute · object[]
location
SitejabberReviewLocation · object
products_used
string[]
images
string[]