get_listing_details
finder.porsche.comReturns comprehensive Porsche vehicle details from https://finder.porsche.com, including VIN, stock number, technical data, equipment, gallery, warranty, history, pricing, and seller details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_listing_details?
Returns comprehensive Porsche vehicle details from https://finder.porsche.com, including VIN, stock number, technical data, equipment, gallery, warranty, history, pricing, and seller details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_url_slug, marketplace, language and get the result back without maintaining a scraper.
Response
{
"vin": "<string>",
"title": "<string>",
"listed": true,
"record": {},
"seller": {},
"pricing": {},
"vehicle": {},
"warranty": {},
"equipment": {},
"listing_id": "<string>",
"listing_url": "<string>",
"inventory_id": "<string>",
"stock_number": "<string>",
"gallery_images": [
"<string>"
],
"technical_data": {},
"listing_url_slug": "<string>",
"commission_number": "<string>",
"condition_history": {},
"important_resources": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/cfbdd23f-e16f-4a2e-83c8-af2c0d80b50a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "cfbdd23f-e16f-4a2e-83c8-af2c0d80b50a",
"variables": {
"listing_url_slug": "porsche-911-gt3-preowned-ZO9LEE",
"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="cfbdd23f-e16f-4a2e-83c8-af2c0d80b50a") — the "get_listing_details" function, which returns comprehensive Porsche vehicle details from https://finder.porsche.com, including VIN, stock number, technical data, equipment, gallery, warranty, history, pricing, and seller details.. It takes listing_url_slug (str), marketplace (str), language (str). Return the result as structured JSON.