curl --request POST \
--url https://api.hobbo.ai/gumroad/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"reviews_to_fetch": 123,
"pagination_token": "<string>",
"product_id": "<string>",
"is_text_formatted": true,
"sync_date": "<string>"
}
'{
"all_reviews": [
{
"author_name": "<string>",
"author_profile_image_url": "<string>",
"author_profile_image_url_org": "<string>",
"is_new": true,
"purchase_id": "<string>",
"query": "<string>",
"rater": {
"avatar_url": "<string>",
"name": "<string>"
},
"review_age": "<string>",
"review_date": "<string>",
"review_id": "<string>",
"review_rating": 123,
"review_text": "<string>",
"review_unique_id": "<string>",
"video": "<string>"
}
],
"extra_information": {
"extra_information": {},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}This endpoint is used to fetch reviews for a specific gumroad products, identified by its query name.
curl --request POST \
--url https://api.hobbo.ai/gumroad/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"reviews_to_fetch": 123,
"pagination_token": "<string>",
"product_id": "<string>",
"is_text_formatted": true,
"sync_date": "<string>"
}
'{
"all_reviews": [
{
"author_name": "<string>",
"author_profile_image_url": "<string>",
"author_profile_image_url_org": "<string>",
"is_new": true,
"purchase_id": "<string>",
"query": "<string>",
"rater": {
"avatar_url": "<string>",
"name": "<string>"
},
"review_age": "<string>",
"review_date": "<string>",
"review_id": "<string>",
"review_rating": 123,
"review_text": "<string>",
"review_unique_id": "<string>",
"video": "<string>"
}
],
"extra_information": {
"extra_information": {},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}Gumroad review scraping parameters
Provide proper Gumroad product URL
Number of reviews to fetch (default: all reviews, or within 30-second timeout)
The offset id for fetching the next set of paginated reviews, obtained from the previous API response
The id of the Product for fetching the next page reviews, obtained from the previous API response
returns the review text with visual formatting preserved
Fetches reviews posted on a specific date using format: YYYY-MM-DD
Reviews fetched successfully
Array of fetched reviews
Show child attributes
Name of the review author
URL to the author's HD profile image
URL to the author's profile image
Indicates if the review is new
ID of the purchase
Original query URL
Age of the review
Date when the review was posted
ID of the review
Rating given in the review (1-5)
Content of the review
Unique identifier for the review
URL to video review if available
Status message about the review extraction