# Airbnb shared wishlist scraper example

**Use case:** 

Export every saved Airbnb stay from a public shared wishlist into structured listing records with ratings, availability, prices, and photos.

## Input

```json
{
  "wishlistUrls": [
    {
      "url": "https://www.airbnb.com/wishlists/v/1276806850?s=67&unique_share_id=ed9772cd-7a8f-4b0e-b93a-a3acbe443fb6"
    }
  ],
  "maxListingsPerWishlist": 5,
  "includePhotos": true,
  "locale": "en-US",
  "currency": "USD",
  "debug": false
}
```

## Output

```json
{
  "wishlistName": {
    "label": "Wishlist"
  },
  "wishlistOwner": {
    "label": "Owner"
  },
  "listingId": {
    "label": "Listing ID"
  },
  "title": {
    "label": "Stay"
  },
  "subtitle": {
    "label": "Subtitle"
  },
  "available": {
    "label": "Available"
  },
  "rating": {
    "label": "Rating"
  },
  "bedSummary": {
    "label": "Beds"
  },
  "price": {
    "label": "Price"
  },
  "badges": {
    "label": "Badges"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "wishlistUrl": {
    "label": "Wishlist URL",
    "format": "link"
  },
  "photoUrls": {
    "label": "Photos"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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