# Scrape budget Airbnb listings under $100

**Use case:** 

Extract cheap Airbnb listings under $100/night with rating, reviews and URL. Filtered, export-ready CSV/JSON.

## Input

```json
{
  "location": "Austin, TX",
  "adults": 0,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "priceMax": 100,
  "roomType": "any",
  "currency": "USD",
  "fetchDetails": false,
  "maxItems": 25,
  "monitorMode": false,
  "alertOnNewListing": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "image_url": {
    "label": "Photo",
    "format": "string"
  },
  "name": {
    "label": "Listing",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "price_per_night": {
    "label": "Per night",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews",
    "format": "integer"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "lat": {
    "label": "Lat",
    "format": "number"
  },
  "lng": {
    "label": "Lng",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb Scraper (Working) — $1.50 per 1,000 Listings](https://apify.com/scrapersdelight/airbnb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/airbnb-scraper) to learn more, explore other use cases, and run it yourself.