# Fraser Sailing Yachts For Sale Scraper

**Use case:** 

Scrape Fraser sailing yachts for sale with vessel name, builder, year built, length, guests, cabins, crew, price, and images. Export to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "lookingFor": "Sale",
  "newToFleet": false,
  "type": [
    "Sail"
  ],
  "minLength": 10,
  "maxLength": 85,
  "minPrice": 250000,
  "maxPrice": 185000000,
  "minCrew": 0,
  "maxCrew": 0
}
```

## Output

```json
{
  "primaryImageUrl": {
    "label": "Image",
    "format": "image"
  },
  "vesselName": {
    "label": "Vessel Name",
    "format": "text"
  },
  "builderName": {
    "label": "Builder Name",
    "format": "text"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "number"
  },
  "yearRefit": {
    "label": "Year Refit",
    "format": "number"
  },
  "length": {
    "label": "Length",
    "format": "text"
  },
  "guests": {
    "label": "Guests",
    "format": "number"
  },
  "cabins": {
    "label": "Cabins",
    "format": "number"
  },
  "crew": {
    "label": "Crew",
    "format": "number"
  },
  "priceParsed": {
    "label": "Price",
    "format": "number"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Fraser Yachts Scraper](https://apify.com/parseforge/fraseryachts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/fraseryachts-scraper) to learn more, explore other use cases, and run it yourself.