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
Generative AI API
Domain to Review
Extract reviews from a domain website.
POST
/
features
/
domain-to-review
curl --request POST \
--url https://py-api.hobbo.ai/features/domain-to-review \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"query": "https://www.feedspace.io/"
}'
{
"reviews": [
{
"author_company": "<string>",
"author_name": "<string>",
"author_position": "<string>",
"author_profile_image_url": "<string>",
"query": "<string>",
"review_date": "<string>",
"review_rating": 123,
"review_text": "<string>",
"review_title": "<string>",
"review_url": "<string>",
"website_logo": "<string>"
}
]
}
Authorizations
Body
application/json
Domain review extraction parameters
The body is of type object
.
Response
200
application/json
Reviews extracted successfully
The response is of type object
.
curl --request POST \
--url https://py-api.hobbo.ai/features/domain-to-review \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"query": "https://www.feedspace.io/"
}'
{
"reviews": [
{
"author_company": "<string>",
"author_name": "<string>",
"author_position": "<string>",
"author_profile_image_url": "<string>",
"query": "<string>",
"review_date": "<string>",
"review_rating": 123,
"review_text": "<string>",
"review_title": "<string>",
"review_url": "<string>",
"website_logo": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.