# Airbnb listings search — example run

**Use case:** 

Searches Airbnb for a location with date and guest filters and returns a few structured listings — price, room type and location — as clean JSON.

## Input

```json
{
  "mode": "search",
  "location": "Lisbon",
  "priceMin": 0,
  "priceMax": 0,
  "adults": 0,
  "children": 0,
  "roomType": "any",
  "minBedrooms": 0,
  "minBeds": 0,
  "minBathrooms": 0,
  "calendarMonths": 0,
  "maxItems": 5,
  "currency": "USD",
  "concurrency": 2,
  "maxPriceSplits": 2,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews count",
    "format": "number"
  },
  "roomType": {
    "label": "Room type",
    "format": "string"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

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