API Documentation
Generative AI API
- POSTEmail content
- POSTSentiment analysis
- POSTCapture screenshot
- POSTUI auditor
- POSTAsk for feedbacks
- POSTFeedback form generator
- POSTWebsite info
- POSTReviews Selection
- POSTReview text generator
- POSTReview to Image
- POSTVideo metadata extraction
- POSTDomain to Asset Extraction
- POSTDomain to Everything
- POSTDomain to Review
Scrapper API
- POSTAirbnb Reviews
- POSTApartments.com Reviews
- POSTApp Store Reviews
- POSTApple Podcast Reviews
- POSTAppsumo Reviews
- POSTBooking.com Attraction Reviews
- POSTChrome Extension Reviews
- POSTCoursera Reviews
- POSTFreelancer Reviews
- POSTFresha Reviews
- POSTGoodreads Reviews
- POSTGoogle Play Store Reviews
- POSTGumroad Reviews
- POSTHeal.me Reviews
- POSTHomeStars.com Reviews
- POSTIMDB Reviews
- POSTItalki Reviews
- POSTOyo Reviews
- POSTPeoplePerHour Offer Reviews
- POSTProduct Hunt Reviews
- POSTProduct Hunt Launch Reviews
- POSTRealtor.com Reviews
- POSTRotten Tomatoes Reviews
- POSTShopify Appstore Reviews
- POSTSkillShare Reviews
- POSTThemeforest Reviews
- POSTThemeforest Comments
- POSTTripadvisor Reviews
- POSTTrustpilot Reviews
- POSTUdemy Reviews
- POSTWordPress Plugin Reviews
- POSTYelp Reviews
- POSTYouTube Reviews
- POSTZillow Reviews
- POSTZomato Reviews
Scrapper API
Airbnb Reviews
This endpoint is used to fetch reviews from Airbnb.
POST
/
airbnb
/
reviews
Copy
curl --request POST \
--url https://py-api.hobbo.ai/airbnb/reviews \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"query": "<string>",
"reviews_to_fetch": 123,
"sort_type": "MOST_RECENT",
"pagination_token": "<string>",
"hotel_id": "<string>"
}'
Copy
{
"all_reviews": [],
"extra_information": {},
"message": "<string>"
}
Authorizations
Body
application/json
Airbnb review scraping parameters
The body is of type object
.
Response
200
application/json
Reviews fetched successfully
The response is of type object
.
Copy
curl --request POST \
--url https://py-api.hobbo.ai/airbnb/reviews \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"query": "<string>",
"reviews_to_fetch": 123,
"sort_type": "MOST_RECENT",
"pagination_token": "<string>",
"hotel_id": "<string>"
}'
Copy
{
"all_reviews": [],
"extra_information": {},
"message": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.