search_vehicle_listings
finder.porsche.comReturns one page of Porsche vehicle listings from https://finder.porsche.com with prices, mileage, colors, drivetrain, seller details, images, and listing slugs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_vehicle_listings?
Returns one page of Porsche vehicle listings from https://finder.porsche.com with prices, mileage, colors, drivetrain, seller details, images, and listing slugs. 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, page, condition, sort, additional_filters, marketplace, language and get the result back without maintaining a scraper.
Response
{
"page": 0,
"listings": [
{
"model": "<string>",
"title": "<string>",
"images": [
"<string>"
],
"record": {},
"seller": {},
"distance": "<string>",
"body_type": "<string>",
"condition": "<string>",
"drivetrain": "<string>",
"listing_id": "<string>",
"model_year": 0,
"engine_type": "<string>",
"listing_url": "<string>",
"price_value": 0,
"mileage_unit": "<string>",
"transmission": "<string>",
"mileage_value": 0,
"exterior_color": "<string>",
"interior_color": "<string>",
"model_category": "<string>",
"price_currency": "<string>",
"listing_url_slug": "<string>",
"certified_pre_owned": true
}
],
"total_pages": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/74700935-d5a0-4c29-b428-9bf75fb0834f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "74700935-d5a0-4c29-b428-9bf75fb0834f",
"variables": {
"model": "911",
"category": "911-gt3",
"location": "Sonoma",
"latitude": 38.2828,
"longitude": -122.4677,
"radius_miles": 100,
"page": 1,
"condition": "",
"sort": "",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="74700935-d5a0-4c29-b428-9bf75fb0834f") — the "search_vehicle_listings" function, which returns one page of Porsche vehicle listings from https://finder.porsche.com with prices, mileage, colors, drivetrain, seller details, images, and listing slugs.. It takes model (str), category (str), location (str), latitude (float), longitude (float), radius_miles (int), page (int), condition (str), sort (str), additional_filters (dict[str, Any]), marketplace (str), language (str). Return the result as structured JSON.