# Scrape used cars for sale in Toronto on Kijiji

**Use case:** 

Reads the Toronto cars and trucks category on Kijiji.ca, 40 listings per page, and returns 35 plus fields per ad: price, year, make, model, kilometres, transmission, VIN where posted, dealer or private, location and photos. Dealers use it to watch the private market for trade in stock.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.kijiji.ca/b-cars-trucks/city-of-toronto/c174l1700273"
    }
  ],
  "max_pages": 5,
  "proxy_configuration": ""
}
```

## Output

```json
{
  "id": {
    "label": "Id"
  },
  "title": {
    "label": "Title"
  },
  "description": {
    "label": "Description"
  },
  "phone_number": {
    "label": "Phone number"
  },
  "kijiji_url": {
    "label": "Kijiji url"
  },
  "image_urls": {
    "label": "Image urls"
  },
  "ad_source": {
    "label": "Ad source"
  },
  "activation_date": {
    "label": "Activation date"
  },
  "sorting_date": {
    "label": "Sorting date"
  },
  "location_name": {
    "label": "Location name"
  },
  "location_address": {
    "label": "Location address"
  },
  "latitude": {
    "label": "Latitude"
  },
  "longitude": {
    "label": "Longitude"
  },
  "price_amount": {
    "label": "Price amount"
  },
  "price_original_amount": {
    "label": "Price original amount"
  },
  "price_classification_rating": {
    "label": "Price classification rating"
  },
  "price_type": {
    "label": "Price type"
  },
  "price_surcharges": {
    "label": "Price surcharges"
  },
  "is_top_ad": {
    "label": "Is top ad"
  },
  "is_showcase": {
    "label": "Is showcase"
  },
  "is_highlighted": {
    "label": "Is highlighted"
  },
  "poster_id": {
    "label": "Poster id"
  },
  "dealership_name": {
    "label": "Dealership name"
  },
  "make": {
    "label": "Make"
  },
  "model": {
    "label": "Model"
  },
  "year": {
    "label": "Year"
  },
  "mileage_km": {
    "label": "Mileage km"
  },
  "transmission": {
    "label": "Transmission"
  },
  "fuel_type": {
    "label": "Fuel type"
  },
  "drivetrain": {
    "label": "Drivetrain"
  },
  "body_type": {
    "label": "Body type"
  },
  "color": {
    "label": "Color"
  },
  "condition": {
    "label": "Condition"
  },
  "for_sale_by": {
    "label": "For sale by"
  },
  "vin": {
    "label": "Vin"
  },
  "trim": {
    "label": "Trim"
  },
  "carfax_link": {
    "label": "Carfax link"
  },
  "seats": {
    "label": "Seats"
  },
  "doors": {
    "label": "Doors"
  },
  "features": {
    "label": "Features"
  },
  "source_search_url": {
    "label": "Source search url"
  },
  "listing_url": {
    "label": "Listing url"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fayoussef/kijiji-ca-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
