Skip to main content
POST
/
appsumo-reviews
/
reviews
cURL
curl --request POST \
  --url https://api.hobbo.ai/appsumo-reviews/reviews \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "reviews_to_fetch": 123,
  "sort_type": "newest",
  "pagination_token": "<string>",
  "deal_id": 123,
  "is_text_formatted": true,
  "sync_date": "<string>"
}
'
{
  "all_reviews": [
    {
      "answer_type": "<unknown>",
      "approved": true,
      "author_id": 123,
      "author_name": "<string>",
      "author_profile_image_url": "<string>",
      "author_profile_image_url_org": "<string>",
      "deal_id": 123,
      "deals_purchased": 123,
      "helpful_vote_counts": 123,
      "query": "<string>",
      "review_date": "<string>",
      "review_id": 123,
      "review_rating": 123,
      "review_reply_data": [
        {}
      ],
      "review_text": "<string>",
      "review_title": "<string>",
      "review_unique_id": "<string>",
      "review_url": "<string>"
    }
  ],
  "extra_information": {
    "extra_information": {},
    "total_review_count": 123,
    "total_review_count_list": [
      123
    ]
  },
  "message": "<string>"
}

Body

application/json

appsumo review scraping parameters

query
string
required

Provide proper Appsumo url or give a product slug

reviews_to_fetch
number

Number of reviews to fetch (default: all reviews, or within 30-second timeout)

sort_type
enum<string>
default:newest

Order in which reviews should be sorted

Available options:
newest,
oldest,
rating_asc,
rating_desc,
helpful
pagination_token
string

The next_page received with the past request, which is required for the pagination

deal_id
number

Required parameter for pagination which is received with the past response

is_text_formatted
boolean

returns the review text with visual formatting preserved

sync_date
string

Fetches reviews posted on a specific date using format: YYYY-MM-DD

Response

Reviews fetched successfully

all_reviews
object[]

Array of fetched reviews

extra_information
object
message
string

Status message about the review extraction