{
  "openapi": "3.0.1",
  "info": {
    "title": "Norwegian (NCL) Scraper - Complete Cruise Data Extractor",
    "description": "Norwegian Cruise Line (NCL) data extractor - 6 markets, 20 destinations, with optional detail enrichment (images, ports). Per-cabin pricing, session rotation, residential proxy handling. Ideal for travel APIs and price comparison platforms.",
    "version": "0.0",
    "x-build-id": "fCRVjn8kUZKU3waf5"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/sercul~norwegian-cruise-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-sercul-norwegian-cruise-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/sercul~norwegian-cruise-scraper/runs": {
      "post": {
        "operationId": "runs-sync-sercul-norwegian-cruise-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/sercul~norwegian-cruise-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-sercul-norwegian-cruise-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "region"
        ],
        "properties": {
          "region": {
            "title": "Locale (region)",
            "enum": [
              "it_IT",
              "en_US",
              "en_GB",
              "de_DE",
              "nl_NL",
              "en_AU"
            ],
            "type": "string",
            "description": "Locale in format lang_COUNTRY. Supported: it_IT, en_US, en_GB, de_DE, nl_NL, en_AU",
            "default": "it_IT"
          },
          "maxRows": {
            "title": "Maximum Rows",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Maximum number of cruises to save",
            "default": 100
          },
          "destinations": {
            "title": "Destinations",
            "type": "array",
            "description": "Filter cruises by NCL destination codes (multi-select)",
            "items": {
              "type": "string",
              "enum": [
                "AFRICA",
                "ALASKA",
                "ASIA",
                "AUSTRALIA",
                "BAHAMAS",
                "BERMUDA",
                "CANADA_NEW_ENGL",
                "CARIBBEAN",
                "EXTRAORDINARY_JOURNEYS",
                "GREEK_ISLES",
                "HAWAII",
                "MEDITERRANEAN",
                "MEXICAN_RIVIERA",
                "NORTHERN_EUROPE",
                "PACIFIC_COASTAL",
                "PANAMA_CANAL",
                "SOUTH_AMERICA",
                "SOUTH_PACIFIC",
                "TRANSATLANTIC",
                "WEEKEND"
              ],
              "enumTitles": [
                "Africa",
                "Alaska",
                "Asia",
                "Australia & New Zealand",
                "Bahamas",
                "Bermuda",
                "Canada & New England",
                "Caribbean",
                "Extraordinary Journeys",
                "Greek Isles",
                "Hawaii",
                "Mediterranean",
                "Mexico",
                "Northern Europe",
                "Pacific Coastal",
                "Panama Canal",
                "South America",
                "South Pacific",
                "Transatlantic",
                "Weekend"
              ]
            }
          },
          "enrichDetails": {
            "title": "Enrich Details",
            "type": "boolean",
            "description": "Fetch detail endpoint per itinerary to enrich images/ports",
            "default": false
          },
          "detailConcurrency": {
            "title": "Detail Concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Max concurrent detail requests",
            "default": 5
          },
          "minConcurrency": {
            "title": "Min Concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "BasicCrawler minimum concurrency",
            "default": 1
          },
          "maxConcurrency": {
            "title": "Max Concurrency",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "BasicCrawler maximum concurrency",
            "default": 10
          },
          "maxRequestRetries": {
            "title": "Max Request Retries",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Number of retries for failed requests",
            "default": 3
          },
          "requestHandlerTimeoutSecs": {
            "title": "Request Timeout (secs)",
            "minimum": 10,
            "maximum": 300,
            "type": "integer",
            "description": "HTTP request timeout in seconds",
            "default": 30
          },
          "useApifyProxy": {
            "title": "Use Apify Proxy (REQUIRED unless custom proxyUrl)",
            "type": "boolean",
            "description": "Required for correct data. Uses Apify RESIDENTIAL group with country from region. Disable ONLY if providing proxyUrl.",
            "default": true
          },
          "apifyProxyCountryCode": {
            "title": "Apify Proxy countryCode (optional override)",
            "type": "string",
            "description": "Two-letter country code to pin Apify Proxy (e.g., GB, US). Leave empty to derive from region."
          },
          "apifyProxyGroups": {
            "title": "Apify Proxy groups (comma-separated, optional)",
            "type": "string",
            "description": "Optional Apify Proxy groups, comma-separated (e.g., RESIDENTIAL)."
          },
          "useSessionPool": {
            "title": "Rotate proxies on 429/403 (session-like)",
            "type": "boolean",
            "description": "When using Apify Proxy, rotate proxy URL on throttling/forbidden to improve success.",
            "default": true
          },
          "proxyUrl": {
            "title": "Custom Proxy URL (alternative to Apify Proxy)",
            "type": "string",
            "description": "Use only if useApifyProxy=false. Must be geo-matched to region country. Format: http[s]://user:pass@host:port"
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}