Marketplace
No threads yet
Live

list_filter_options

finder.porsche.com

Returns all nonempty vehicle search filter options and hit counts from https://finder.porsche.com for a configurable model, category, location, radius and additional filters.

Parameters9
Runs4
Updated5h 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 list_filter_options?

Returns all nonempty vehicle search filter options and hit counts from https://finder.porsche.com for a configurable model, category, location, radius and additional filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass model, category, location, latitude, longitude, radius_miles, additional_filters, marketplace, language and get the result back without maintaining a scraper.

Response

{
  "hitcounts": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/528510c1-a789-44fb-b0a6-65b21186b5d0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "528510c1-a789-44fb-b0a6-65b21186b5d0",
    "variables": {
        "model": "911",
        "category": "911-gt3",
        "location": "Sonoma",
        "latitude": 38.2828,
        "longitude": -122.4677,
        "radius_miles": 100,
        "additional_filters": {},
        "marketplace": "us",
        "language": "en-US"
    }
}'

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="528510c1-a789-44fb-b0a6-65b21186b5d0") — the "list_filter_options" function, which returns all nonempty vehicle search filter options and hit counts from https://finder.porsche.com for a configurable model, category, location, radius and additional filters..

It takes model (str), category (str), location (str), latitude (float), longitude (float), radius_miles (int), additional_filters (dict[str, Any]), marketplace (str), language (str). Return the result as structured JSON.