# Find Budget Airbnb Stays Under a Price (No Login)

**Use case:** 

Scrape only Airbnb listings under your max price: names, prices, ratings, and locations as clean JSON. No login or API key. $1.50 per 1,000 listings.

## Input

```json
{
  "location": "Lisbon, Portugal",
  "adults": 1,
  "priceMax": 150,
  "maxListings": 40,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "id": {
    "label": "Listing ID",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "roomType": {
    "label": "Room type",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb Search Scraper](https://apify.com/virtual-constructs/airbnb-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/virtual-constructs/airbnb-search-scraper) to learn more, explore other use cases, and run it yourself.