Marketplace
No threads yet
Live

get_models_for_make

autotrader.com

Retrieve all vehicle models available for a specific make on https://autotrader.com. Returns each model's search code (value) and display name (label) for use in listing searches.

Parameters1
Runs10
Updated10d ago
Operational10 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 get_models_for_make?

Retrieve all vehicle models available for a specific make on https://autotrader.com. Returns each model's search code (value) and display name (label) for use in listing searches. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass make and get the result back without maintaining a scraper.

Response

{
  "make": "<string>",
  "total": 0,
  "models": [
    {
      "label": "<string>",
      "value": "<string>"
    }
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/880913a3-5157-4309-b3d4-373830b4eb4c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "880913a3-5157-4309-b3d4-373830b4eb4c",
    "variables": {
        "make": "TOYOTA"
    }
}'

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="880913a3-5157-4309-b3d4-373830b4eb4c") — the "get_models_for_make" function, which retrieve all vehicle models available for a specific make on https://autotrader.com. Returns each model's search code (value) and display name (label) for use in listing searches..

It takes make (str). Return the result as structured JSON.