# Airbnb Listing Scraper

**Use case:** 

Scrape specific Airbnb listings by URL: room type, host (name, superhost, profile), guest capacity, rating and forward availability. JSON or CSV.

## Input

```json
{
  "mode": "listings",
  "market": "Austin, TX",
  "markets": [],
  "listings": [
    "https://www.airbnb.com/rooms/52773926",
    "https://www.airbnb.com/rooms/42384230",
    "https://www.airbnb.com/rooms/28254684"
  ],
  "hosts": [],
  "roomType": "any",
  "minBedrooms": 0,
  "minPrice": 0,
  "maxPrice": 0,
  "adults": 2,
  "rankBy": "attention",
  "maxResults": 100,
  "estimateRevenue": true,
  "enableMarketMemory": true,
  "trackListings": [],
  "deltaWindowDays": 7,
  "lastReviewedAt": "",
  "persona": "generic",
  "outputProfile": "signals",
  "analysisDepth": "standard",
  "explainability": "standard",
  "calendarDepthDays": 90,
  "maxRuntimeSeconds": 3600,
  "locationQueries": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Record Type",
    "format": "string"
  },
  "dataType": {
    "label": "Data type"
  },
  "id": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "roomType": {
    "label": "Room type",
    "format": "text"
  },
  "isSuperHost": {
    "label": "Superhost",
    "format": "boolean"
  },
  "personCapacity": {
    "label": "Capacity",
    "format": "number"
  },
  "rating": {
    "label": "Rating (7-axis)",
    "format": "object"
  },
  "host": {
    "label": "Host",
    "format": "object"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb Scraper - Market Signals, Pricing Position & Monitor](https://apify.com/ryanclinton/airbnb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/airbnb-scraper) to learn more, explore other use cases, and run it yourself.