# Used electric cars for sale in Nova Scotia on Clutch

**Use case:** 

List every used electric car Clutch.ca sells in Nova Scotia and Atlantic Canada (Halifax, Moncton, Charlottetown), cheapest first, with price, battery range, mileage, VIN, accident history, Carfax link and photos. Useful for EV buyers and for tracking used EV prices in the Maritimes.

## Input

```json
{
  "province": "NS",
  "max_items": 100,
  "sort_by": "price_asc",
  "include_details": true,
  "deals_only": false,
  "payment_frequency": "biweekly",
  "fuel_types": [
    "Electric"
  ],
  "proxyConfiguration": {}
}
```

## Output

```json
{
  "image_url": {
    "label": "Photo",
    "format": "image"
  },
  "title": {
    "label": "Vehicle",
    "format": "text"
  },
  "price_cad": {
    "label": "Price (CAD)",
    "format": "number"
  },
  "original_price_cad": {
    "label": "Was (CAD)",
    "format": "number"
  },
  "discount_cad": {
    "label": "Discount (CAD)",
    "format": "number"
  },
  "mileage_km": {
    "label": "Mileage (km)",
    "format": "number"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "vin": {
    "label": "VIN",
    "format": "text"
  },
  "body_type": {
    "label": "Body",
    "format": "text"
  },
  "drivetrain": {
    "label": "Drivetrain",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "fuel_type": {
    "label": "Fuel",
    "format": "text"
  },
  "engine": {
    "label": "Engine",
    "format": "text"
  },
  "horsepower": {
    "label": "HP",
    "format": "number"
  },
  "exterior_color": {
    "label": "Exterior",
    "format": "text"
  },
  "interior_color": {
    "label": "Interior",
    "format": "text"
  },
  "seats": {
    "label": "Seats",
    "format": "number"
  },
  "doors": {
    "label": "Doors",
    "format": "number"
  },
  "number_of_owners": {
    "label": "Owners",
    "format": "number"
  },
  "number_of_accidents": {
    "label": "Accidents",
    "format": "number"
  },
  "carfax_report_url": {
    "label": "Carfax",
    "format": "link"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "price_province": {
    "label": "Province",
    "format": "text"
  },
  "url": {
    "label": "Listing",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Clutch.ca Car Scraper: Used Car Prices, VIN & Carfax](https://apify.com/fayoussef/clutch-ca-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/clutch-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/clutch-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`).
