Marketplace
No threads yet
DraftUnverified

search_vehicle_listings

autotrader.com

Searches https://autotrader.com vehicle listings with flexible filters and returns pricing, specifications, images, sellers, available filters, and total count.

Parameters31
Runs4
Updated1d ago
Operational4 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_vehicle_listings?

Searches https://autotrader.com vehicle listings with flexible filters and returns pricing, specifications, images, sellers, available filters, and total count. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass make, model, zip_code, radius, offset, limit, listing_type, min_year, max_year, min_price, max_price, max_mileage, sort_by, vehicle_style, body_style_subtype, fuel_type, drive_type, transmission, exterior_color, interior_color, engine_code, seller_type, door_code, maximum_seating, deal_type, home_services, vehicle_history, vehicle_use, keyword, market_extension, features and get the result back without maintaining a scraper.

Response

{
  "limit": 0,
  "total": 0,
  "offset": 0,
  "listings": [
    {
      "data": {},
      "seller": {},
      "listing_id": 0,
      "listing_url": "<string>"
    }
  ],
  "source_url": "<string>",
  "result_stats": {},
  "available_filters": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/116c4ae7-dbda-40ab-99d1-4bca63482685/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "116c4ae7-dbda-40ab-99d1-4bca63482685",
    "variables": {
        "make": "TOYOTA",
        "model": "CAMRY",
        "zip_code": "94105",
        "radius": 50,
        "offset": 0,
        "limit": 10,
        "listing_type": "all-cars",
        "min_year": 0,
        "max_year": 0,
        "min_price": 0,
        "max_price": 0,
        "max_mileage": 0,
        "sort_by": "",
        "vehicle_style": "",
        "body_style_subtype": "",
        "fuel_type": "",
        "drive_type": "",
        "transmission": "",
        "exterior_color": "",
        "interior_color": "",
        "engine_code": "",
        "seller_type": "",
        "door_code": "",
        "maximum_seating": 0,
        "deal_type": "",
        "home_services": "",
        "vehicle_history": "",
        "vehicle_use": "",
        "keyword": "",
        "market_extension": false,
        "features": null
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="116c4ae7-dbda-40ab-99d1-4bca63482685") — the "search_vehicle_listings" function, which searches https://autotrader.com vehicle listings with flexible filters and returns pricing, specifications, images, sellers, available filters, and total count..

It takes make (str), model (str), zip_code (str), radius (int), offset (int), limit (int), listing_type (str), min_year (int), max_year (int), min_price (int), max_price (int), max_mileage (int), sort_by (str), vehicle_style (str), body_style_subtype (str), fuel_type (str), drive_type (str), transmission (str), exterior_color (str), interior_color (str), engine_code (str), seller_type (str), door_code (str), maximum_seating (int), deal_type (str), home_services (str), vehicle_history (str), vehicle_use (str), keyword (str), market_extension (bool), features (list[str] | None). Return the result as structured JSON.