curl --request POST \
--url https://api.hobbo.ai/flipkart/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"reviews_to_fetch": 123,
"sort_type": "MOST_HELPFUL",
"pagination_token": "<string>",
"is_text_formatted": true,
"sync_date": "<string>"
}
'{
"all_reviews": [
{
"author_city": "<string>",
"author_name": "<string>",
"certified_buyer": true,
"dislikes": "<string>",
"likes": "<string>",
"query": "<string>",
"reiew_url": "<string>",
"review_date": "<string>",
"review_image_url": [
"<string>"
],
"review_rating": "<string>",
"review_text": "<string>",
"review_title": "<string>"
}
],
"extra_information": {
"extra_information": {},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}This endpoint is used to fetch reviews from flipkart for a specified business.
curl --request POST \
--url https://api.hobbo.ai/flipkart/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"reviews_to_fetch": 123,
"sort_type": "MOST_HELPFUL",
"pagination_token": "<string>",
"is_text_formatted": true,
"sync_date": "<string>"
}
'{
"all_reviews": [
{
"author_city": "<string>",
"author_name": "<string>",
"certified_buyer": true,
"dislikes": "<string>",
"likes": "<string>",
"query": "<string>",
"reiew_url": "<string>",
"review_date": "<string>",
"review_image_url": [
"<string>"
],
"review_rating": "<string>",
"review_text": "<string>",
"review_title": "<string>"
}
],
"extra_information": {
"extra_information": {},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}Flipkart review scraping parameters
Provide proper Flipkart Review url.
Number of reviews to fetch (default: all reviews, or within 30-second timeout)
Order in which reviews should be sorted
MOST_HELPFUL, MOST_RECENT, POSITIVE_FIRST, NEGATIVE_FIRST The next_page received with the past request, which is required for the pagination
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
City of the review author
Name of the review author
Whether the reviewer is a certified buyer
Number of dislikes for the review
Number of likes for the review
Original query URL
URL of the specific review
Date when the review was posted
Array of image URLs associated with the review
Rating given in the review
Content of the review
Title of the review
Status message about the review extraction