# Royal Caribbean Miami Cruise Extractor

**Use case:** 

Extract Royal Caribbean cruises departing Miami with sailing dates, ships, itineraries, cabin prices, taxes, and booking URLs.

## Input

```json
{
  "destinationCodes": [
    "BAHAM"
  ],
  "departurePortCodes": [
    "MIA"
  ],
  "shipCodes": [],
  "maxItems": 50,
  "pageSize": 20
}
```

## Output

```json
{
  "sailingId": {
    "label": "Sailing ID",
    "format": "text"
  },
  "itineraryName": {
    "label": "Itinerary",
    "format": "text"
  },
  "shipName": {
    "label": "Ship",
    "format": "text"
  },
  "destinationName": {
    "label": "Destination",
    "format": "text"
  },
  "departurePortName": {
    "label": "Departure port",
    "format": "text"
  },
  "nights": {
    "label": "Nights",
    "format": "number"
  },
  "sailDate": {
    "label": "Sail date",
    "format": "date"
  },
  "endDate": {
    "label": "End date",
    "format": "date"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "interiorPrice": {
    "label": "Interior",
    "format": "number"
  },
  "outsidePrice": {
    "label": "Outside",
    "format": "number"
  },
  "balconyPrice": {
    "label": "Balcony",
    "format": "number"
  },
  "suitePrice": {
    "label": "Suite",
    "format": "number"
  },
  "taxesAndFees": {
    "label": "Taxes & fees",
    "format": "number"
  },
  "taxesAndFeesIncluded": {
    "label": "Taxes included",
    "format": "boolean"
  },
  "productUrl": {
    "label": "Cruise page",
    "format": "link"
  },
  "bookingUrl": {
    "label": "Book",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Royal Caribbean Cruise Pricing Scraper](https://apify.com/automation-lab/royal-caribbean-cruise-pricing-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/royal-caribbean-cruise-pricing-scraper) to learn more, explore other use cases, and run it yourself.