Airbnb Search
1 creditSearch listings on Airbnb.
/api/v1/tools/airbnb/searchParameters
Location to search (city, address, region).
Check-in date in YYYY-MM-DD format.
Check-out date in YYYY-MM-DD format.
Number of adults (min 1). Defaults to 1.
Number of children. Defaults to 0.
Number of infants. Defaults to 0.
Number of pets. Defaults to 0.
Minimum price per night.
Maximum price per night.
Property type filter. Array of: "entire_home", "private_room", "shared_room", "hotel_room".
Minimum number of bedrooms.
Minimum number of bathrooms.
Minimum number of beds.
Only show Superhost listings. Defaults to false.
Only show Instant Book listings. Defaults to false.
Maximum results. Defaults to 20.
Maximum pages to fetch. Defaults to 5.
Fields to include in response. Omit or pass ["*"] for all fields.
Response Schema
Airbnb search result
Array of listing search results
Number of results returned
True if results were cut short due to a timeout or server limit. Only present when truncation occurred.
Request metadata
Tool name (airbnb-search)
Credits consumed (1)
Unique request ID
Request
curl -X POST https://scraper.run/api/v1/tools/airbnb/search \-H "Authorization: Bearer sc_live_..." \-H "Content-Type: application/json" \-d '{"location": "Florence, Italy","checkIn": "2026-05-01","checkOut": "2026-05-05","adults": 2,"superhostOnly": true}'
Response Example
{"data": {"results": [{"listingId": "12345678","title": "Charming Loft in the Heart of Florence","name": "Charming Loft in the Heart of Florence","avgRatingLocalized": "4.92 (318)","price": {"total": "$142","qualifier": "per night","accessibilityLabel": "$142 per night"},"badges": [{"text": "Guest favorite","badgeType": "GUEST_FAVORITE"}],"photos": [{"id": "photo_1","url": "https://a0.muscache.com/im/pictures/...","caption": "Living room"}],"primaryLine": ["Entire rental unit","2 beds"],"secondaryLine": ["May 1-5"],"coordinate": {"latitude": 43.7696,"longitude": 11.2558},"host": {"name": "Marco","isSuperhost": true,"yearsHosting": 8,"ratingAverage": 4.95}}],"count": 1,"truncated": false},"meta": {"tool": "airbnb-search","creditsUsed": 1,"requestId": "req_abc123"}}