Live
get_carfax_report_url
finder.porsche.comReturns the direct Carfax vehicle history report URL for a listing ID from https://finder.porsche.com, or null when no report is available.
Parameters3
Runs4
Updated5h ago
Operational4 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_carfax_report_url?
Returns the direct Carfax vehicle history report URL for a listing ID from https://finder.porsche.com, or null when no report is available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_id, marketplace, language and get the result back without maintaining a scraper.
Response
{
"listing_id": "<string>",
"report_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8c95466b-4bd6-4d2c-abb0-3cae70860fd8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8c95466b-4bd6-4d2c-abb0-3cae70860fd8",
"variables": {
"listing_id": "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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8c95466b-4bd6-4d2c-abb0-3cae70860fd8") — the "get_carfax_report_url" function, which returns the direct Carfax vehicle history report URL for a listing ID from https://finder.porsche.com, or null when no report is available.. It takes listing_id (str), marketplace (str), language (str). Return the result as structured JSON.