
Airbnb Scraper
Pricing
$1.25 / 1,000 results

Airbnb Scraper
Scrape Airbnb rentals in your chosen destinations. Extract descriptions, locations, prices per night, ratings, reviews count, host details, amenities and more. Download scraped data in various formats including HTML, JSON and Excel.
4.3 (6)
Pricing
$1.25 / 1,000 results
102
Total users
9.4K
Monthly users
363
Runs succeeded
93%
Issues response
5.9 days
Last modified
4 months ago
Problem with out of the range (integer) Airbnb ID number in URL
Closed
2024-03-20T08:18:31.997Z WARN Home detail is behind login or no longer available. {"url":"https://www.airbnb.com/rooms/597082611740627300"}
597082611740627300 - is wrong ID, it seems actor has bug on handling integers because actual url on input is - https://www.airbnb.com/rooms/597082611740627363 (where ID is: 597082611740627363 ) .

It seems Airbnb changed the length of their IDs and we havent taken in into account. I am not sure though when we will be able to fix that as we have limited capacity at the moment. Have you tried other AIRBNB scrapers in Apify Store?

Hello, thanks a lot for helping us debugging the issue! It was indeed wrong handling of integers.
The bug should be resolved with the latest build 0.0.63
, see the example run: https://console.apify.com/view/runs/cEdbwM7GNqScR2KDr
FYI, Airbnb started using BigInt
listing IDs while our Actor used a default JSON.parse
method to parse all API responses.
That resulted in saving int
values instead of BigInt
, such as 597082611740627300
instead of 597082611740627363
.
So, a specialized JSON.parse
method was needed to handle BigInt
values properly.