# Wizz Air Prague to Larnaca Flight Price Scraper

**Use case:** 

Scrape Wizz Air fares and departure times for Prague (PRG) to Larnaca (LCA). Get daily lowest prices and schedules in JSON.

## Input

```json
{
  "maxItems": 50,
  "withDetails": true,
  "origin": "PRG",
  "destination": "LCA",
  "departureDate": "2026-08-20",
  "dateRangeDays": 7,
  "adultCount": 1,
  "childCount": 0,
  "infantCount": 0,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "origin": {
    "label": "From",
    "format": "text"
  },
  "originName": {
    "label": "From City",
    "format": "text"
  },
  "destination": {
    "label": "To",
    "format": "text"
  },
  "destinationName": {
    "label": "To City",
    "format": "text"
  },
  "departureDate": {
    "label": "Date",
    "format": "text"
  },
  "departureTimes": {
    "label": "Departure Times",
    "format": "array"
  },
  "flightsAvailable": {
    "label": "Flights",
    "format": "number"
  },
  "price": {
    "label": "Lowest Fare",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "priceReduced": {
    "label": "Reduced",
    "format": "boolean"
  },
  "deepLink": {
    "label": "Book",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Wizz Air Flights Scraper: Fares, Schedules & Price Calendar](https://apify.com/scrapers_lat/wizzair-flights-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/wizzair-flights-scraper) to learn more, explore other use cases, and run it yourself.