# Kijiji Toronto apartment scraper

**Use case:** 

Scrape Kijiji Toronto apartment listings with titles, prices, locations, categories, listing URLs, images, and posted dates.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.kijiji.ca/b-apartments-condos/city-of-toronto/c37l1700273"
    }
  ],
  "searchQuery": "",
  "category": "",
  "location": "city-of-toronto",
  "maxListings": 100,
  "includeDetails": true
}
```

## Output

```json
{
  "imageUrls": {
    "label": "Image",
    "format": "image"
  },
  "adId": {
    "label": "Ad ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "priceAmount": {
    "label": "Price (CAD)",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "postedDate": {
    "label": "Posted",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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