# Scrape Airbnb listings in Paris

**Use case:** 

Extract Airbnb listings in Paris with prices and details. Structured short-term rental data. No subscription, pay per result.

## Input

```json
{
  "locationQueries": [
    "Paris, France"
  ],
  "startUrls": [],
  "listingUrls": [],
  "adults": 2,
  "currency": "USD",
  "locale": "en-US",
  "skipDetailPages": false,
  "includeReviews": false,
  "maxReviewsPerListing": 50,
  "calendarMonths": 0,
  "monitoringMode": false,
  "maxResults": 5,
  "maxConcurrency": 3,
  "useProxy": false,
  "concurrency": 2
}
```

## Output

```json
{
  "id": {
    "label": "Id"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "room_type": {
    "label": "Room type",
    "format": "text"
  },
  "property_type": {
    "label": "Type",
    "format": "text"
  },
  "price_per_night": {
    "label": "Price/night",
    "format": "number"
  },
  "pricing_currency": {
    "label": "Currency",
    "format": "text"
  },
  "overall_rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lng",
    "format": "number"
  },
  "host_name": {
    "label": "Host",
    "format": "text"
  },
  "host_is_superhost": {
    "label": "Superhost",
    "format": "boolean"
  },
  "is_guest_favorite": {
    "label": "Guest Fav",
    "format": "boolean"
  },
  "amenity_wifi": {
    "label": "WiFi",
    "format": "boolean"
  },
  "amenity_kitchen": {
    "label": "Amenity kitchen"
  },
  "cancellation_policy": {
    "label": "Cancellation",
    "format": "text"
  },
  "check_in_after": {
    "label": "Check-in",
    "format": "text"
  },
  "pets_allowed": {
    "label": "Pets",
    "format": "boolean"
  }
}
```

## About this Actor

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