# Canadian city events monitor workflow

**Use case:** 

Monitor multiple ToDoCanada city guides and extract deduplicated event schedules, venues, prices, and ticket URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.todocanada.ca/things-to-do-in-toronto-this-weekend/"
    },
    {
      "url": "https://www.todocanada.ca/things-to-do-in-vancouver-this-weekend/"
    }
  ],
  "maxItems": 250,
  "includeDetails": true,
  "deduplicate": true
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "startDate": {
    "label": "Starts",
    "format": "date"
  },
  "endDate": {
    "label": "Ends",
    "format": "date"
  },
  "venueName": {
    "label": "Venue",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "object"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "isFree": {
    "label": "Free",
    "format": "boolean"
  },
  "organizer": {
    "label": "Organizer",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "eventUrl": {
    "label": "Event",
    "format": "link"
  },
  "ticketUrl": {
    "label": "Tickets",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

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