Airbnb Property Availability avatar

Airbnb Property Availability

Pricing

from $3.80 / 1,000 results

Go to Apify Store
Airbnb Property Availability

Airbnb Property Availability

Scrape final pricing from any Airbnb property URL instantly. This Actor automatically handles pagination to fetch the complete price breakdown, including rent, service fees, taxes, and total. Export clean, structured data in JSON or CSV for sentiment analysis and competitor research.

Pricing

from $3.80 / 1,000 results

Rating

0.0

(0)

Developer

Creation

Creation

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

11 days ago

Last modified

Share

Airbnb Property Availability Scraper

Overview

This Actor extracts up to 12 months of calendar availability for a specific Airbnb listing. It uses Airbnb's internal GraphQL API to quickly retrieve which dates are available to book and which dates are already blocked or booked, returning the data in a clean, easily readable format.

🚀 Features

  • Detailed Availability: Retrieves available and booked dates grouped by Month and Year.
  • Fast & Efficient: Utilizes the direct GraphQL PdpAvailabilityCalendar API rather than slow HTML UI rendering.
  • Standard Date Format: Outputs all dates in MM/DD/YYYY format for easy parsing and integration.
  • User-Agent Rotation: Automatically rotates headers and user agents to mimic real browser behavior.

📥 Input Parameters

The Actor currently accepts the following input field:

FieldTypeDescriptionRequired
urlStringA single Airbnb room URL (e.g., https://www.airbnb.com/rooms/1577342525653350466).Yes

Input Example

{
"url": "[https://www.airbnb.com/rooms/1577342525653350466](https://www.airbnb.com/rooms/1577342525653350466)"
}```
## Output Example
**Example output:**
```json
{
"[https://www.airbnb.com/rooms/1577342525653350466](https://www.airbnb.com/rooms/1577342525653350466)": {
"May 2026": {
"available": [
"05/10/2026",
"05/11/2026",
"05/12/2026",
"05/13/2026",
"05/14/2026"
],
"booked": [
"05/01/2026",
"05/02/2026",
"05/03/2026",
"05/04/2026"
]
},
"June 2026": {
"available": [
"06/01/2026",
"06/02/2026",
"06/03/2026"
],
"booked": [
"06/05/2026",
"06/06/2026",
"06/07/2026",
"06/08/2026"
]
}
}
}```
## ⚠️ Limitations
Proxies: This Actor does not strictly require proxies for single runs, but extensive or concurrent scraping of Airbnb may lead to temporary IP blocks. For large-scale usage, integrating Apify Proxies is highly recommended.
Date Range: The current configuration extracts exactly 12 months of calendar data starting from the current date.