Skip to main content
POST
/
airbnb
/
reviews
cURL
curl --request POST \
  --url https://py-api.hobbo.ai/airbnb/reviews \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>",
  "reviews_to_fetch": 123,
  "sort_type": "MOST_RECENT",
  "pagination_token": "<string>",
  "hotel_id": "<string>",
  "is_text_formatted": true,
  "sync_date": "<string>"
}'
{
  "all_reviews": [],
  "extra_information": {},
  "message": "<string>"
}

Body

application/json

Airbnb review scraping parameters

query
string
required

Airbnb room page URL or airbnb_room_id

reviews_to_fetch
number

Number of reviews to fetch (default: all reviews, or within 30-second timeout)

sort_type
enum<string>
default:MOST_RECENT

Order in which reviews should be sorted

Available options:
MOST_RECENT,
RATING_DESC,
RATING_ASC
pagination_token
string

Next page index for fetching paginated reviews, from previous API response

hotel_id
string

ID of the hotel for fetching paginated reviews, from previous API response

is_text_formatted
boolean

returns the review text with visual formatting preserved

sync_date
string

Fetches reviews posted on a specific date using format: YYYY-MM-DD

Response

Reviews fetched successfully

all_reviews
object[]

Array of fetched reviews

extra_information
object
message
string

Status message about the review extraction