# Find used Honda Civics for sale around Montreal

**Use case:** 

Searches AutoTrader.ca with the built in filters for used Honda Civic from model year 2018 within 100 km of Montreal and returns 127 fields per car: VIN, numeric price, kilometres, trim, transmission, dealer name and phone, and every photo. No search URL to build.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.autotrader.ca/cars/ot_used?priceto=16000&modelyearto=2007&cy=CA&damaged_listing=exclude&desc=0&pricefrom=10000&sort=standard&ustate=N%2CU&atype=C&size=20"
    }
  ],
  "max_items": 300,
  "vehicle_type": "cars",
  "makes": [
    "Honda"
  ],
  "models": [
    "Civic"
  ],
  "conditions": [
    "used"
  ],
  "model_year_from": 2018,
  "power_unit": "hp",
  "postal_code": "Montreal, QC",
  "radius_km": "100",
  "include_damaged": false,
  "sort_by": "standard",
  "sort_descending": false
}
```

## Output

```json
{
  "listing_url": {
    "label": "Listing",
    "format": "link"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "vin": {
    "label": "VIN",
    "format": "text"
  },
  "price_cad": {
    "label": "Price CAD",
    "format": "number"
  },
  "mileage_km": {
    "label": "Mileage km",
    "format": "number"
  },
  "body_type": {
    "label": "Body",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "drivetrain": {
    "label": "Drivetrain",
    "format": "text"
  },
  "fuel_type": {
    "label": "Fuel",
    "format": "text"
  },
  "engine": {
    "label": "Engine",
    "format": "text"
  },
  "exterior_color": {
    "label": "Exterior",
    "format": "text"
  },
  "interior_color": {
    "label": "Interior",
    "format": "text"
  },
  "doors": {
    "label": "Doors",
    "format": "number"
  },
  "seats": {
    "label": "Seats",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "province": {
    "label": "Province",
    "format": "text"
  },
  "seller_name": {
    "label": "Seller",
    "format": "text"
  },
  "dealer_phone": {
    "label": "Dealer phone",
    "format": "text"
  },
  "dealer_website": {
    "label": "Dealer site",
    "format": "link"
  },
  "is_private_seller": {
    "label": "Private seller",
    "format": "boolean"
  },
  "carfax_url": {
    "label": "Carfax",
    "format": "link"
  },
  "accident_free": {
    "label": "Accident free",
    "format": "boolean"
  },
  "posted_age_days": {
    "label": "Days listed",
    "format": "number"
  },
  "image_urls": {
    "label": "Photos",
    "format": "array"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
