{
  "openapi": "3.0.1",
  "info": {
    "title": "Clutch.ca Car Scraper: Used Car Prices, VIN & Carfax",
    "description": "Scrape used cars from Clutch.ca, Canada's online car retailer. Filter by make, model, price, biweekly or monthly payment, year, mileage, body, fuel, features, colour and seats. Export price, discount, VIN, specs, Carfax link, accident history and photos.",
    "version": "0.1",
    "x-build-id": "1vdjvMMZT6ygqp6AA"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/fayoussef~clutch-ca-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-fayoussef-clutch-ca-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/fayoussef~clutch-ca-scraper/runs": {
      "post": {
        "operationId": "runs-sync-fayoussef-clutch-ca-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/fayoussef~clutch-ca-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-fayoussef-clutch-ca-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "province": {
            "title": "Province",
            "enum": [
              "ON",
              "NS",
              "NB",
              "PE"
            ],
            "type": "string",
            "description": "Clutch sets its inventory and prices per province, not per city: Toronto, Ottawa, Hamilton and every other Ontario city get exactly the same cars at the same price, and so do Halifax, Moncton and Charlottetown for the Atlantic provinces. So pick the province where the buyer lives, no city needed. Ontario has about 3,000 cars, Nova Scotia, New Brunswick and PEI share about 3,500. Clutch does not sell in other provinces yet.",
            "default": "ON"
          },
          "max_items": {
            "title": "Max results",
            "minimum": 1,
            "type": "integer",
            "description": "Stop after this many vehicles. Leave empty to scrape every vehicle that matches the filters."
          },
          "sort_by": {
            "title": "Sort results by",
            "enum": [
              "featured",
              "newest",
              "price_asc",
              "price_desc",
              "mileage_asc",
              "mileage_desc"
            ],
            "type": "string",
            "description": "Same order as the Sort menu on clutch.ca. Matters when Max results is set, since it decides which vehicles you get.",
            "default": "featured"
          },
          "include_details": {
            "title": "Include full vehicle details",
            "type": "boolean",
            "description": "On: every vehicle also gets its VIN, colours, transmission, engine and horsepower, seats and doors, the full feature list, Carfax link, accident and ownership history, warranty and all photos. Off: search data only (price, mileage, make, model, trim, body, drivetrain, fuel), which is much faster.",
            "default": true
          },
          "deals_only": {
            "title": "Deals only",
            "type": "boolean",
            "description": "Only vehicles currently on sale, like the Deals checkbox on clutch.ca. The output shows the original price and the discount.",
            "default": false
          },
          "price_min": {
            "title": "Price from",
            "minimum": 0,
            "type": "integer",
            "description": "Lowest price, in CAD."
          },
          "price_max": {
            "title": "Price to",
            "minimum": 0,
            "type": "integer",
            "description": "Highest price, in CAD."
          },
          "max_payment": {
            "title": "Max payment",
            "minimum": 0,
            "type": "integer",
            "description": "Finance filter: the most you want to pay per period (biweekly or monthly, chosen below). Clutch works out which cars fit using its current finance rate and the down payment below."
          },
          "payment_frequency": {
            "title": "Payment frequency",
            "enum": [
              "biweekly",
              "monthly"
            ],
            "type": "string",
            "description": "Whether Max payment is biweekly or monthly. Only used when Max payment is set.",
            "default": "biweekly"
          },
          "down_payment": {
            "title": "Down payment",
            "minimum": 0,
            "type": "integer",
            "description": "Money down for the finance filter, in CAD. Only used when Max payment is set."
          },
          "makes": {
            "title": "Makes",
            "type": "array",
            "description": "Vehicle makes to include. Leave empty for all makes.",
            "items": {
              "type": "string",
              "enum": [
                "Acura",
                "Audi",
                "BMW",
                "Buick",
                "Cadillac",
                "Chevrolet",
                "Chrysler",
                "Dodge",
                "Fiat",
                "Ford",
                "Genesis",
                "GMC",
                "Honda",
                "Hyundai",
                "Infiniti",
                "Jaguar",
                "Jeep",
                "Kia",
                "Land Rover",
                "Lexus",
                "Lincoln",
                "Mazda",
                "Mercedes-Benz",
                "MINI",
                "Mitsubishi",
                "Nissan",
                "Polestar",
                "Porsche",
                "Ram",
                "Rivian",
                "Scion",
                "Smart",
                "Subaru",
                "Tesla",
                "Toyota",
                "VinFast",
                "Volkswagen",
                "Volvo"
              ],
              "enumTitles": [
                "Acura",
                "Audi",
                "BMW",
                "Buick",
                "Cadillac",
                "Chevrolet",
                "Chrysler",
                "Dodge",
                "Fiat",
                "Ford",
                "Genesis",
                "GMC",
                "Honda",
                "Hyundai",
                "Infiniti",
                "Jaguar",
                "Jeep",
                "Kia",
                "Land Rover",
                "Lexus",
                "Lincoln",
                "Mazda",
                "Mercedes-Benz",
                "MINI",
                "Mitsubishi",
                "Nissan",
                "Polestar",
                "Porsche",
                "Ram",
                "Rivian",
                "Scion",
                "Smart",
                "Subaru",
                "Tesla",
                "Toyota",
                "VinFast",
                "Volkswagen",
                "Volvo"
              ]
            }
          },
          "models": {
            "title": "Models",
            "type": "array",
            "description": "Model names, for example \"RAV4\" or \"CR-V\". Spelling is forgiving (case, spaces and hyphens are ignored). Pick the make too for the most precise match. A model Clutch does not sell is reported in the log and ignored.",
            "items": {
              "type": "string"
            }
          },
          "trims": {
            "title": "Trims",
            "type": "array",
            "description": "Trim names as clutch.ca shows them, for example \"LE\" or \"Touring\". Use together with a model.",
            "items": {
              "type": "string"
            }
          },
          "body_types": {
            "title": "Body type",
            "type": "array",
            "description": "Body styles to include. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "SUV",
                "Sedan",
                "Hatchback",
                "Wagon",
                "Truck",
                "Van",
                "Coupe",
                "Convertible"
              ],
              "enumTitles": [
                "SUV",
                "Sedan",
                "Hatchback",
                "Wagon",
                "Truck",
                "Van",
                "Coupe",
                "Convertible"
              ]
            }
          },
          "year_min": {
            "title": "Year from",
            "minimum": 1990,
            "maximum": 2100,
            "type": "integer",
            "description": "Earliest model year."
          },
          "year_max": {
            "title": "Year to",
            "minimum": 1990,
            "maximum": 2100,
            "type": "integer",
            "description": "Latest model year."
          },
          "mileage_min": {
            "title": "Mileage from",
            "minimum": 0,
            "type": "integer",
            "description": "Lowest odometer reading, in kilometres."
          },
          "mileage_max": {
            "title": "Mileage to",
            "minimum": 0,
            "type": "integer",
            "description": "Highest odometer reading, in kilometres."
          },
          "fuel_types": {
            "title": "Fuel type",
            "type": "array",
            "description": "Fuel or powertrain types to include. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "Gasoline",
                "Hybrid",
                "Plug-In Hybrid",
                "Electric",
                "Diesel",
                "Gasoline/Mild Electric Hybrid"
              ],
              "enumTitles": [
                "Gasoline",
                "Hybrid",
                "Plug-In Hybrid",
                "Electric",
                "Diesel",
                "Gasoline/Mild Electric Hybrid"
              ]
            }
          },
          "features": {
            "title": "Features",
            "type": "array",
            "description": "Only vehicles that have ALL of the selected features. Grouped by the same categories as the clutch.ca filter panel.",
            "items": {
              "type": "string",
              "enum": [
                "Automatic Brake Hold",
                "Brake Assist",
                "Electric Parking Brake",
                "Front Locking Differential",
                "Hill Assistance",
                "Rear Locking Differential",
                "Regenerative Braking",
                "Selectable Terrain Modes",
                "Bed-Rail Protectors",
                "Front Trunk",
                "In-Box Lighting",
                "Integrated Tailgate Step",
                "Pickup Box Camera",
                "Power Running Boards",
                "Trailer Backup Assist",
                "Trailer Brake Controller",
                "Trailer Camera",
                "Trailer Sway Control",
                "12V Outlet",
                "App Remote Start",
                "Auto Stop/Start",
                "Automatic Windshield Wipers",
                "Bidirectional Charging",
                "Climate Control",
                "DC Fast Charging",
                "Digital Key",
                "Drive Mode Select",
                "Dual Zone Front Climate Control",
                "Heat Pump",
                "Heated Mirrors",
                "Heated Steering Wheel",
                "Integrated Garage Door Opener",
                "Keyfob Remote Start",
                "Keyfob Remote Trunk Release",
                "Keyless Entry",
                "Multi-Zone Climate Control",
                "One-Touch Windows",
                "Passive Keyless Entry",
                "Power Adjustable Steering Column",
                "Power Folding Exterior Mirrors",
                "Power Lumbar Support",
                "Power Mirrors",
                "Power Sliding Doors",
                "Power Tailgate/Hatch",
                "Push Button Start",
                "Rain Sensing Wipers",
                "Rear Climate Control",
                "Rear Climate Vents",
                "Rear Window Defroster",
                "Remote Climate Preconditioning",
                "Soft Close Doors",
                "AM/FM Stereo",
                "Android Auto",
                "Apple CarPlay",
                "Augmented Reality Navigation",
                "Auxiliary Audio Input",
                "Bluetooth Music",
                "Built-in Dash Cam",
                "Charging Cable",
                "DVD Video System",
                "Digital Instrument Cluster",
                "GPS Navigation",
                "Hands Free Device Connectivity",
                "Internet Access",
                "Mobile App Access",
                "Premium Sound System",
                "Rear Entertainment System",
                "Speed-Sensitive Volume",
                "Touchscreen Display",
                "USB Input",
                "Voice Control",
                "Wireless Charging",
                "Convertible Roof",
                "Painted Calipers",
                "Running Boards",
                "Spoiler",
                "Welcome Lights",
                "Ambient Lighting",
                "Automatic High Beams",
                "Cornering Lights",
                "LED Headlamps",
                "LED Tail Lights",
                "Laser Headlights",
                "Carbon Ceramic Brakes",
                "Paddle Shifters",
                "Sport Exhaust",
                "Panoramic Sunroof",
                "Sunroof",
                "Targa Roof",
                "360 Camera",
                "Active Lane Keep Assistance",
                "Adaptive Cruise Control",
                "Auto Dimming Mirrors",
                "Auto Dimming Rearview Mirror",
                "Automatic Emergency Braking",
                "Autonomous Cruise Control",
                "Blindspot Sensors",
                "Collision Detection",
                "Cruise Control",
                "Digital Rearview Mirror",
                "Driver Attention Alert",
                "Emergency SOS System",
                "Forward Collision Mitigation",
                "Forward Collision Warning",
                "Front Cross Traffic Alert",
                "Front View Camera",
                "Hands-Free Highway Driving",
                "Heads Up Display",
                "Intersection Collision Warning",
                "Lane Departure Warning",
                "Parking Assistance",
                "Parking Sensors",
                "Pedestrian Detection",
                "Pre-Collision System",
                "Rear Collision Mitigation",
                "Rear Collision Warning",
                "Rear Cross Traffic Alert",
                "Rear Parking Sensors",
                "Rear Seat Reminder",
                "Rear View Camera",
                "Safe Exit Assist",
                "Side View Cameras",
                "Traffic Sign Recognition",
                "Air Conditioning",
                "Driver Seat Massage System",
                "Driver Seat Memory System",
                "Dual Power Rear Seats",
                "Folding Rear Seats",
                "Front Heated Seats",
                "Front Seats Massage System",
                "Front Seats Memory System",
                "Manual Fold-Into-Floor Second Row Seat",
                "Manual Fold-Into-Floor Third Row Seat",
                "Power Driver Seat",
                "Power Front Seats",
                "Power Passenger Seat",
                "Rear Heated Seats",
                "Synthetic Leather Seats",
                "Third-Row Heated Seats",
                "Ventilated 2nd Row Seats",
                "Ventilated Front Seats"
              ],
              "enumTitles": [
                "Braking & Traction: Automatic Brake Hold",
                "Braking & Traction: Brake Assist",
                "Braking & Traction: Electric Parking Brake",
                "Braking & Traction: Front Locking Differential",
                "Braking & Traction: Hill Assistance",
                "Braking & Traction: Rear Locking Differential",
                "Braking & Traction: Regenerative Braking",
                "Braking & Traction: Selectable Terrain Modes",
                "Cargo & Towing: Bed-Rail Protectors",
                "Cargo & Towing: Front Trunk",
                "Cargo & Towing: In-Box Lighting",
                "Cargo & Towing: Integrated Tailgate Step",
                "Cargo & Towing: Pickup Box Camera",
                "Cargo & Towing: Power Running Boards",
                "Cargo & Towing: Trailer Backup Assist",
                "Cargo & Towing: Trailer Brake Controller",
                "Cargo & Towing: Trailer Camera",
                "Cargo & Towing: Trailer Sway Control",
                "Comfort & Convenience: 12V Outlet",
                "Comfort & Convenience: App Remote Start",
                "Comfort & Convenience: Auto Stop/Start",
                "Comfort & Convenience: Automatic Windshield Wipers",
                "Comfort & Convenience: Bidirectional Charging",
                "Comfort & Convenience: Climate Control",
                "Comfort & Convenience: DC Fast Charging",
                "Comfort & Convenience: Digital Key",
                "Comfort & Convenience: Drive Mode Select",
                "Comfort & Convenience: Dual Zone Front Climate Control",
                "Comfort & Convenience: Heat Pump",
                "Comfort & Convenience: Heated Mirrors",
                "Comfort & Convenience: Heated Steering Wheel",
                "Comfort & Convenience: Integrated Garage Door Opener",
                "Comfort & Convenience: Keyfob Remote Start",
                "Comfort & Convenience: Keyfob Remote Trunk Release",
                "Comfort & Convenience: Keyless Entry",
                "Comfort & Convenience: Multi-Zone Climate Control",
                "Comfort & Convenience: One-Touch Windows",
                "Comfort & Convenience: Passive Keyless Entry",
                "Comfort & Convenience: Power Adjustable Steering Column",
                "Comfort & Convenience: Power Folding Exterior Mirrors",
                "Comfort & Convenience: Power Lumbar Support",
                "Comfort & Convenience: Power Mirrors",
                "Comfort & Convenience: Power Sliding Doors",
                "Comfort & Convenience: Power Tailgate/Hatch",
                "Comfort & Convenience: Push Button Start",
                "Comfort & Convenience: Rain Sensing Wipers",
                "Comfort & Convenience: Rear Climate Control",
                "Comfort & Convenience: Rear Climate Vents",
                "Comfort & Convenience: Rear Window Defroster",
                "Comfort & Convenience: Remote Climate Preconditioning",
                "Comfort & Convenience: Soft Close Doors",
                "Entertainment & Technology: AM/FM Stereo",
                "Entertainment & Technology: Android Auto",
                "Entertainment & Technology: Apple CarPlay",
                "Entertainment & Technology: Augmented Reality Navigation",
                "Entertainment & Technology: Auxiliary Audio Input",
                "Entertainment & Technology: Bluetooth Music",
                "Entertainment & Technology: Built-in Dash Cam",
                "Entertainment & Technology: Charging Cable",
                "Entertainment & Technology: DVD Video System",
                "Entertainment & Technology: Digital Instrument Cluster",
                "Entertainment & Technology: GPS Navigation",
                "Entertainment & Technology: Hands Free Device Connectivity",
                "Entertainment & Technology: Internet Access",
                "Entertainment & Technology: Mobile App Access",
                "Entertainment & Technology: Premium Sound System",
                "Entertainment & Technology: Rear Entertainment System",
                "Entertainment & Technology: Speed-Sensitive Volume",
                "Entertainment & Technology: Touchscreen Display",
                "Entertainment & Technology: USB Input",
                "Entertainment & Technology: Voice Control",
                "Entertainment & Technology: Wireless Charging",
                "Exterior: Convertible Roof",
                "Exterior: Painted Calipers",
                "Exterior: Running Boards",
                "Exterior: Spoiler",
                "Exterior: Welcome Lights",
                "Lighting: Ambient Lighting",
                "Lighting: Automatic High Beams",
                "Lighting: Cornering Lights",
                "Lighting: LED Headlamps",
                "Lighting: LED Tail Lights",
                "Lighting: Laser Headlights",
                "Performance & Drive: Carbon Ceramic Brakes",
                "Performance & Drive: Paddle Shifters",
                "Performance & Drive: Sport Exhaust",
                "Roof & Glass: Panoramic Sunroof",
                "Roof & Glass: Sunroof",
                "Roof & Glass: Targa Roof",
                "Safety & Security: 360 Camera",
                "Safety & Security: Active Lane Keep Assistance",
                "Safety & Security: Adaptive Cruise Control",
                "Safety & Security: Auto Dimming Mirrors",
                "Safety & Security: Auto Dimming Rearview Mirror",
                "Safety & Security: Automatic Emergency Braking",
                "Safety & Security: Autonomous Cruise Control",
                "Safety & Security: Blindspot Sensors",
                "Safety & Security: Collision Detection",
                "Safety & Security: Cruise Control",
                "Safety & Security: Digital Rearview Mirror",
                "Safety & Security: Driver Attention Alert",
                "Safety & Security: Emergency SOS System",
                "Safety & Security: Forward Collision Mitigation",
                "Safety & Security: Forward Collision Warning",
                "Safety & Security: Front Cross Traffic Alert",
                "Safety & Security: Front View Camera",
                "Safety & Security: Hands-Free Highway Driving",
                "Safety & Security: Heads Up Display",
                "Safety & Security: Intersection Collision Warning",
                "Safety & Security: Lane Departure Warning",
                "Safety & Security: Parking Assistance",
                "Safety & Security: Parking Sensors",
                "Safety & Security: Pedestrian Detection",
                "Safety & Security: Pre-Collision System",
                "Safety & Security: Rear Collision Mitigation",
                "Safety & Security: Rear Collision Warning",
                "Safety & Security: Rear Cross Traffic Alert",
                "Safety & Security: Rear Parking Sensors",
                "Safety & Security: Rear Seat Reminder",
                "Safety & Security: Rear View Camera",
                "Safety & Security: Safe Exit Assist",
                "Safety & Security: Side View Cameras",
                "Safety & Security: Traffic Sign Recognition",
                "Seating & Interior: Air Conditioning",
                "Seating & Interior: Driver Seat Massage System",
                "Seating & Interior: Driver Seat Memory System",
                "Seating & Interior: Dual Power Rear Seats",
                "Seating & Interior: Folding Rear Seats",
                "Seating & Interior: Front Heated Seats",
                "Seating & Interior: Front Seats Massage System",
                "Seating & Interior: Front Seats Memory System",
                "Seating & Interior: Manual Fold-Into-Floor Second Row Seat",
                "Seating & Interior: Manual Fold-Into-Floor Third Row Seat",
                "Seating & Interior: Power Driver Seat",
                "Seating & Interior: Power Front Seats",
                "Seating & Interior: Power Passenger Seat",
                "Seating & Interior: Rear Heated Seats",
                "Seating & Interior: Synthetic Leather Seats",
                "Seating & Interior: Third-Row Heated Seats",
                "Seating & Interior: Ventilated 2nd Row Seats",
                "Seating & Interior: Ventilated Front Seats"
              ]
            }
          },
          "exterior_colors": {
            "title": "Exterior colour",
            "type": "array",
            "description": "Exterior colours to include. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "Black",
                "White",
                "Grey",
                "Silver",
                "Blue",
                "Red",
                "Maroon",
                "Brown",
                "Orange",
                "Green",
                "Yellow",
                "Purple",
                "Other"
              ],
              "enumTitles": [
                "Black",
                "White",
                "Grey",
                "Silver",
                "Blue",
                "Red",
                "Maroon",
                "Brown",
                "Orange",
                "Green",
                "Yellow",
                "Purple",
                "Other"
              ]
            }
          },
          "seats": {
            "title": "Seats",
            "type": "array",
            "description": "Seat counts to include, for example 7 or 8 for a family SUV. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "2",
                "4",
                "5",
                "6",
                "7",
                "8",
                "9"
              ],
              "enumTitles": [
                "2 seats",
                "4 seats",
                "5 seats",
                "6 seats",
                "7 seats",
                "8 seats",
                "9 seats"
              ]
            }
          },
          "drivetrains": {
            "title": "Drivetrain",
            "type": "array",
            "description": "Drivetrains to include. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "FWD",
                "AWD",
                "4WD",
                "RWD"
              ],
              "enumTitles": [
                "Front-wheel drive (FWD)",
                "All-wheel drive (AWD)",
                "Four-wheel drive (4WD)",
                "Rear-wheel drive (RWD)"
              ]
            }
          },
          "transmissions": {
            "title": "Transmission",
            "type": "array",
            "description": "Automatic or manual. Leave empty for both.",
            "items": {
              "type": "string",
              "enum": [
                "Automatic",
                "Manual"
              ],
              "enumTitles": [
                "Automatic",
                "Manual"
              ]
            }
          },
          "cylinders": {
            "title": "Cylinders",
            "type": "array",
            "description": "Engine layouts to include. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "I3",
                "I4",
                "I5",
                "I6",
                "V4",
                "V6",
                "V8",
                "V10",
                "V12",
                "VR6",
                "H4",
                "H6",
                "Boxer (4 cyl.)",
                "Boxer (6 cyl)",
                "Flat-six",
                "Rotary",
                "2Cyl",
                "3Cyl",
                "5Cyl"
              ],
              "enumTitles": [
                "3-cylinder inline (I3)",
                "4-cylinder inline (I4)",
                "5-cylinder inline (I5)",
                "6-cylinder inline (I6)",
                "V4",
                "V6",
                "V8",
                "V10",
                "V12",
                "VR6",
                "Flat-4 (H4)",
                "Flat-6 (H6)",
                "Boxer 4-cylinder",
                "Boxer 6-cylinder",
                "Flat-six",
                "Rotary",
                "2-cylinder",
                "3-cylinder",
                "5-cylinder"
              ]
            }
          },
          "keyword": {
            "title": "Keyword search",
            "type": "string",
            "description": "Free-text search, like the search box on clutch.ca (for example \"tesla model y\" or \"hybrid awd\")."
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional override. Paid runs already include a Canadian proxy network and need nothing here. Free runs use Apify Proxy residential (Canada) on your own account.",
            "default": {}
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}