# Find Holland America Cruises from Amsterdam

**Use case:** 

Scrape Holland America cruises from Amsterdam, Netherlands. Get sailing dates, ships, itinerary stops, and prices. Export to JSON, CSV, or Excel.

## Input

```json
{
  "start_date": "2026-07-01",
  "end_date": "2026-12-31",
  "cruise_length": "0",
  "ship_name": "",
  "cruise_line": "Holland America",
  "departure_port": "Amsterdam",
  "destination": "0",
  "ship_type": "1",
  "port_of_call": "",
  "max_number_of_pages": 5
}
```

## Output

```json
{
  "id": {
    "label": "Cruise ID",
    "format": "string"
  },
  "ship_name": {
    "label": "Ship Name",
    "format": "string"
  },
  "cruise_date": {
    "label": "Cruise Date",
    "format": "string"
  },
  "cruise_title": {
    "label": "Cruise Title",
    "format": "string"
  },
  "cruise_price": {
    "label": "Price",
    "format": "string"
  },
  "cruise_line": {
    "label": "Cruise Line",
    "format": "string"
  },
  "stop_1_date": {
    "label": "Stop 1 Date",
    "format": "string"
  },
  "stop_1_text": {
    "label": "Stop 1 Details",
    "format": "string"
  },
  "stop_2_date": {
    "label": "Stop 2 Date",
    "format": "string"
  },
  "stop_2_text": {
    "label": "Stop 2 Details",
    "format": "string"
  },
  "stop_3_date": {
    "label": "Stop 3 Date",
    "format": "string"
  },
  "stop_3_text": {
    "label": "Stop 3 Details",
    "format": "string"
  },
  "stop_4_date": {
    "label": "Stop 4 Date",
    "format": "string"
  },
  "stop_4_text": {
    "label": "Stop 4 Details",
    "format": "string"
  }
}
```

## About this Actor

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