curl --request POST \
--url https://api.hobbo.ai/provenexpert/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"sort_type": "feedback",
"filter_by": 0,
"reviews_to_fetch": 123,
"sync_date": "<string>",
"is_text_formatted": true
}
'{
"all_reviews": [
{
"query": "<string>",
"review_id": "<string>",
"author_name": "<string>",
"review_text": "<string>",
"review_rating": 123,
"rating_text": "<string>",
"rating_category": {},
"is_recommended": true,
"review_date": "<string>",
"review_stats": {},
"review_reply": {
"replier_name": "<string>",
"replier_profile_image_url": "<string>",
"reply_text": "<string>"
}
}
],
"extra_information": {
"extra_information": {
"pagination_data": {}
},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}This endpoint fetches reviews, ratings, and replies from a ProvenExpert profile identified by its public URL or profile slug.
curl --request POST \
--url https://api.hobbo.ai/provenexpert/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"sort_type": "feedback",
"filter_by": 0,
"reviews_to_fetch": 123,
"sync_date": "<string>",
"is_text_formatted": true
}
'{
"all_reviews": [
{
"query": "<string>",
"review_id": "<string>",
"author_name": "<string>",
"review_text": "<string>",
"review_rating": 123,
"rating_text": "<string>",
"rating_category": {},
"is_recommended": true,
"review_date": "<string>",
"review_stats": {},
"review_reply": {
"replier_name": "<string>",
"replier_profile_image_url": "<string>",
"reply_text": "<string>"
}
}
],
"extra_information": {
"extra_information": {
"pagination_data": {}
},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}ProvenExpert review scraping parameters
Provide a valid ProvenExpert profile URL or profile identifier.
Order in which reviews should be sorted.
feedback, new, old, best, worse Rating filter applied to the reviews (0 keeps all ratings).
0, 5, 4, 3, 2, 1 Number of reviews to fetch (default: all reviews, or within 30-second timeout).
Fetches reviews posted on a specific date using format: YYYY-MM-DD.
Returns the review text with visual formatting preserved.
Reviews fetched successfully
Array of fetched reviews
Show child attributes
Original query URL
Identifier of the review
Name of the review author
Content of the review
Star rating provided in the review
Label associated with the rating (e.g., "Very good")
Whether the reviewer recommends the business
Date when the review was posted
Business response if available
Show child attributes
Total number of reviews fetched
List of review counts per page
Status message about the review extraction