curl --request POST \
--url https://api.hobbo.ai/foursquare/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"reviews_to_fetch": 123,
"sort_type": "popular",
"pagination_token": "<string>",
"is_text_formatted": true,
"sync_date": "<string>"
}
'{
"all_reviews": [
{
"author_id": "<string>",
"author_name": "<string>",
"author_profile_handle": "<string>",
"author_profile_image_url": "<string>",
"author_profile_url": "<string>",
"author_reaction": "<string>",
"downvote": 123,
"first_name": "<string>",
"last_name": "<string>",
"query": "<string>",
"review_date": "<string>",
"review_id": "<string>",
"review_text": "<string>",
"review_time_stamp": 123,
"review_url": "<string>",
"upvote": 123
}
],
"extra_information": {
"extra_information": {},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}This endpoint is used to fetch reviews from foursquare for a specified business.
curl --request POST \
--url https://api.hobbo.ai/foursquare/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"reviews_to_fetch": 123,
"sort_type": "popular",
"pagination_token": "<string>",
"is_text_formatted": true,
"sync_date": "<string>"
}
'{
"all_reviews": [
{
"author_id": "<string>",
"author_name": "<string>",
"author_profile_handle": "<string>",
"author_profile_image_url": "<string>",
"author_profile_url": "<string>",
"author_reaction": "<string>",
"downvote": 123,
"first_name": "<string>",
"last_name": "<string>",
"query": "<string>",
"review_date": "<string>",
"review_id": "<string>",
"review_text": "<string>",
"review_time_stamp": 123,
"review_url": "<string>",
"upvote": 123
}
],
"extra_information": {
"extra_information": {},
"total_review_count": 123,
"total_review_count_list": [
123
]
},
"message": "<string>"
}Foursquare review scraping parameters
Provide proper Foursquare restuarant url or provide a resturant id
Number of reviews to fetch (default: all reviews, or within 30-second timeout)
Order in which reviews should be sorted
popular, recent 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
Unique identifier of the review author
Full name of the review author
Profile handle/username of the author
Profile image URL of the author
Profile URL of the author
Author's reaction to the place
Number of downvotes for the review
First name of the review author
Last name of the review author
Original query URL
Date when the review was posted
Unique identifier for the review
Content of the review
Unix timestamp of the review
URL of the specific review
Number of upvotes for the review
Status message about the review extraction