Skip to main content
POST
/
gumroad
/
reviews
cURL
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>"
}

Body

application/json

Gumroad review scraping parameters

query
string
required

Provide proper Gumroad product URL

reviews_to_fetch
number

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

pagination_token
string

The offset id for fetching the next set of paginated reviews, obtained from the previous API response

product_id
string

The id of the Product for fetching the next page reviews, obtained from the previous API 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