# Airbnb Property Data Extractor for Lahore

**Use case:** 

Extract 200 Airbnb property listings from Lahore. Get detailed data on prices, availability, reviews, and host information.

## Input

```json
{
  "urls": [
    "https://www.airbnb.com/s/Lahore--Pakistan/homes?adults=1&refinement_paths%5B%5D=%2Fhomes&place_id=ChIJ2QeB5YMEGTkRYiR-zGy-OsI&location=Lahore%2C+Pakistan"
  ],
  "results_wanted": 200,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "listing_id": {
    "label": "Listing ID",
    "format": "string"
  },
  "listing_url": {
    "label": "Listing URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "room_type": {
    "label": "Room Type",
    "format": "string"
  },
  "person_capacity": {
    "label": "Person Capacity",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews Count",
    "format": "number"
  },
  "nightly_price": {
    "label": "Nightly Price",
    "format": "string"
  },
  "nightly_price_qualifier": {
    "label": "Nightly Price Qualifier",
    "format": "string"
  },
  "search_rank": {
    "label": "Search Rank",
    "format": "number"
  },
  "fetched_at": {
    "label": "Fetched At",
    "format": "string"
  }
}
```

## About this Actor

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