# Tiqets ticket inventory monitor workflow

**Use case:** 

Monitor several Tiqets attractions for price, discount, bundle, availability, next-date, and rating changes in an export-ready feed.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.tiqets.com/en/louvre-museum-tickets-l124297/?exp_v_new_availabilities=0"
    },
    {
      "url": "https://www.tiqets.com/en/eiffel-tower-tickets-l145981/"
    }
  ],
  "maxItems": 50,
  "includeBundles": true,
  "includeReviews": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "entityId": {
    "label": "Tiqets ID",
    "format": "number"
  },
  "name": {
    "label": "Offering",
    "format": "text"
  },
  "attractionName": {
    "label": "Attraction",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "nextAvailableDate": {
    "label": "Next date",
    "format": "date"
  },
  "productTypes": {
    "label": "Product types",
    "format": "array"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "url": {
    "label": "Tiqets URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Tiqets Attractions & Tickets Scraper](https://apify.com/automation-lab/tiqets-attractions-tickets-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/tiqets-attractions-tickets-scraper) to learn more, explore other use cases, and run it yourself.