# Export used pickup trucks under 40,000 CAD in Alberta

**Use case:** 

Searches AutoTrader.ca for used pickup trucks priced under 40,000 CAD within 200 km of Calgary and exports each with VIN, price, kilometres, engine, drivetrain, dealer and photos. Fleet buyers and dealers use it to price the Alberta truck market in minutes.

## 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",
  "conditions": [
    "used"
  ],
  "price_to": 40000,
  "body_types": [
    "pickup-truck"
  ],
  "power_unit": "hp",
  "postal_code": "Calgary, AB",
  "radius_km": "200",
  "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: Prices, VIN, Mileage & Dealers](https://apify.com/fayoussef/autotrader-canada.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/autotrader-canada.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-canada.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).
