# Ajaccio cruise port calls extractor

**Use case:** 

Extract Ajaccio cruise ship call dates, vessel names, cruise lines, arrival times, departure times, and source links from CruiseMapper.

## Input

```json
{
  "portUrls": [
    {
      "url": "https://www.cruisemapper.com/ports/ajaccio-port-67"
    }
  ],
  "months": [],
  "startMonth": "2026-07",
  "endMonth": "2026-09",
  "maxItems": 500,
  "requestDelaySecs": 0.5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "portName": {
    "label": "Port",
    "format": "text"
  },
  "callDate": {
    "label": "Date",
    "format": "date"
  },
  "shipName": {
    "label": "Ship",
    "format": "text"
  },
  "cruiseLine": {
    "label": "Cruise line",
    "format": "text"
  },
  "arrival": {
    "label": "Arrival",
    "format": "text"
  },
  "departure": {
    "label": "Departure",
    "format": "text"
  },
  "overnight": {
    "label": "Overnight",
    "format": "boolean"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "requestedMonth": {
    "label": "Requested month",
    "format": "text"
  },
  "portUrl": {
    "label": "Port URL",
    "format": "link"
  },
  "shipUrl": {
    "label": "Ship URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [CruiseMapper Port Schedules Scraper](https://apify.com/automation-lab/cruisemapper-port-schedules-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/cruisemapper-port-schedules-scraper) to learn more, explore other use cases, and run it yourself.