# ToDoCanada event detail extractor

**Use case:** 

Extract one ToDoCanada event with schedule, venue, organizer, image, price, and registration links for enrichment.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.todocanada.ca/city/toronto/event/toronto-international-harp-festival-2026/"
    }
  ],
  "maxItems": 1,
  "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.