Discover/Porsche API
live

Porsche APIfinder.porsche.com

Search Porsche dealer listings, retrieve full specs, equipment lists, pricing, and Carfax history links via the Porsche Finder API.

Endpoint health
verified 6d ago
search_listings
get_vehicle_history_report
get_filter_counts
get_listing_detail
4/4 passing latest checkself-healing
Endpoints
4
Updated
21d ago

What is the Porsche API?

The Porsche Finder API provides 4 endpoints covering dealer inventory from finder.porsche.com, including vehicle search, full listing details, filter hit counts, and Carfax history report links. The search_listings endpoint returns paginated summaries with price, mileage, color, transmission, seller info, and image URLs, while get_listing_detail exposes VIN, equipment categories, gallery images, warranty data, and technical specifications for any individual listing.

Try it
Latitude of search center in decimal degrees.
Longitude of search center in decimal degrees.
Sort order for results. Empty string uses default relevance sorting.
Model series to search within. Accepted values include '911', '718', 'cayenne', 'taycan', 'macan', 'panamera'.
Search radius in miles from the search center.
Model category slug to narrow results within a model series (e.g., '911-gt3', '911-turbo-s-coupe', '911-carrera-gts-coupe'). Empty string returns all categories.
Location name used as the search center for geographic filtering.
Vehicle condition filter. Accepted values: 'preowned', 'new', or empty string for all conditions.
api.parse.bot/scraper/e980225b-a3e4-4a14-a553-9cee1d8bfa1b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e980225b-a3e4-4a14-a553-9cee1d8bfa1b/search_listings?lat=40.7128&lng=-74.0060&model=911&radius=100&location=New+York&condition=new' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace finder-porsche-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Porsche Finder SDK — search vehicles, drill into details, check history."""
from parse_apis.porsche_finder_api import PorscheFinder, Condition, Model, ListingNotFound

client = PorscheFinder()

# Search for preowned 911s near New York, capped at 5 results.
for listing in client.listingsummaries.search(
    model=Model._911, condition=Condition.PREOWNED, location="New York", limit=5
):
    print(listing.title, listing.price, listing.color, listing.seller.formatted_city)

# Drill into the first result's full details (technical specs, equipment, gallery).
summary = client.listingsummaries.search(model=Model._911, limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.vin, detail.stock_number)
    for section in detail.technical_data:
        print(section.name, [(item.label, item.value) for item in section.items[:2]])
    for opt in detail.equipment.important:
        print(opt.label)

# Get vehicle history report for the listing.
if summary:
    try:
        report = summary.history_report()
        print(report.listing_id, report.report_url)
    except ListingNotFound as exc:
        print(f"listing gone: {exc.listing_slug}")

# Check available filter options for Cayenne models.
filters = client.filterresults.get(model=Model.CAYENNE, location="Los Angeles")
for opt in filters.hitcounts.get("condition", []):
    print(opt.key, opt.value)

print("exercised: listingsummaries.search / details / history_report / filterresults.get")
All endpoints · 4 totalmissing one? ·

Search for Porsche vehicles by model, category, location, and other filters. Returns paginated listing summaries with pricing, mileage, color, drivetrain, seller info, and images. Each result includes a listing_url_slug for drilling into full details via get_listing_detail. Paginates server-side but the current implementation returns a single page of results per request.

Input
ParamTypeDescription
latstringLatitude of search center in decimal degrees.
lngstringLongitude of search center in decimal degrees.
sortstringSort order for results. Empty string uses default relevance sorting.
modelstringModel series to search within. Accepted values include '911', '718', 'cayenne', 'taycan', 'macan', 'panamera'.
radiusstringSearch radius in miles from the search center.
categorystringModel category slug to narrow results within a model series (e.g., '911-gt3', '911-turbo-s-coupe', '911-carrera-gts-coupe'). Empty string returns all categories.
locationstringLocation name used as the search center for geographic filtering.
conditionstringVehicle condition filter. Accepted values: 'preowned', 'new', or empty string for all conditions.
Response
{
  "type": "object",
  "fields": {
    "total": "integer - number of listings on this page",
    "listings": "array of listing summary objects with id, listing_url_slug, title, model, price, mileage, color, transmission, seller, images",
    "active_page": "integer - current page number",
    "total_pages": "integer - total pages available"
  }
}

About the Porsche API

Search and Filter Inventory

The search_listings endpoint accepts geographic inputs (lat, lng, radius, location) alongside model filters (model, category, condition) to return paginated Porsche dealer listings. Each item in the listings array includes a listing_url_slug needed for drilling into full detail. The model parameter accepts values like 911, taycan, cayenne, or macan; the category parameter narrows further to sub-models such as 911-gt3 or 911-turbo-s-coupe. Pagination is tracked via active_page and total_pages.

Full Listing Detail and Equipment

get_listing_detail takes a listing_slug (e.g., porsche-911-turbo-s-my23-preowned-7078KL) and returns a detailed record including vin, price, color, model generation code, and a seller object with dealer name and address. The equipment field is organized into important, special, and standard categories with descriptions. The gallery object includes an image count and categorized image list. A warranty object covers warranty type, duration, and description.

Filter Counts for UI Building

get_filter_counts returns available filter options and their hit counts for a given search configuration — including bodyType, condition, drivetrain, transmission, exteriorColorGroups, interiorColorGroups, modelCategory, and modelGeneration. This endpoint is useful for building dynamic filter interfaces that reflect what inventory actually exists for a given model and location.

Vehicle History

get_vehicle_history_report accepts a listing_id and returns a report_url pointing to the Carfax page for that vehicle. New vehicles without history return null for report_url. The listing ID is surfaced in search_listings results as the id field.

Reliability & maintenanceVerified

The Porsche API is a managed, monitored endpoint for finder.porsche.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when finder.porsche.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official finder.porsche.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Porsche inventory aggregator filtered by model category (e.g., 911-gt3) and geographic radius
  • Display detailed spec sheets for individual listings using VIN, equipment lists, and technical data from get_listing_detail
  • Power a dynamic filter UI using hit counts from get_filter_counts for drivetrain, color, and transmission options
  • Attach Carfax history report links to pre-owned listing pages using get_vehicle_history_report
  • Track pre-owned 911 pricing across dealer locations by combining search_listings with lat/lng and condition filters
  • Compare standard vs. special equipment across multiple Taycan or Macan listings using the equipment object
  • Identify dealer inventory density by region using seller city and postal_code fields from listing results
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Porsche offer an official public developer API for finder.porsche.com?+
Porsche does not publish a documented public developer API for the Finder inventory platform. There is no official API key program or developer portal for this data source.
What does get_listing_detail return beyond what search_listings provides?+
search_listings returns summary fields: title, price, mileage, color, transmission, seller name, and image URLs. get_listing_detail adds the VIN, model generation code, categorized equipment lists (important, special, and standard), a gallery object with image count and categories, and a warranty object with type, duration, and description. It requires the listing_slug from the search result.
Does the search_listings endpoint support sorting and filtering by transmission or drivetrain?+
search_listings accepts a sort parameter and geographic/model filters, but transmission and drivetrain are not direct inputs to that endpoint. get_filter_counts returns hit counts for those dimensions, which can inform client-side filtering logic. You can fork this API on Parse and revise it to expose additional filter parameters on search_listings.
Does the API cover Porsche listings outside the United States?+
The current API is scoped to the US version of Porsche Finder (finder.porsche.com/us/en-US). International market listings — such as those from European or Asia-Pacific Porsche Finder locales — are not covered. You can fork this API on Parse and revise it to target a different regional path.
Are lease or finance payment estimates available from any endpoint?+
None of the four endpoints return monthly payment estimates, lease terms, or financing rates. The API exposes the listing price in USD via the price field on both search_listings and get_listing_detail, but no payment calculation data. You can fork this API on Parse and revise it to add an endpoint targeting any payment estimation data the source exposes.
Page content last updated . Spec covers 4 endpoints from finder.porsche.com.
Related APIs in AutomotiveSee all →
cars.com API
Search for vehicles on Cars.com using filters like price, make, and model, then get detailed specifications and dealer inventory information for any listing you're interested in. Access comprehensive vehicle details including pricing, features, and dealer contact information all in one place.
preowned.ferrari.com API
Search and browse preowned Ferrari vehicles worldwide with detailed specifications, pricing, and dealer information all in one place. Find the exact model you're looking for by filtering across countries, dealers, and inventory to discover available luxury vehicles.
carfax.com API
carfax.com API
autotrader.com API
Search Autotrader.com vehicle listings and access detailed information like pricing, specifications, and VIN data with flexible filtering options. Browse all available vehicle makes and models to refine your search across thousands of listings.
autotrader.ca API
Search vehicle listings on AutoTrader.ca and retrieve detailed information including specifications, pricing, mileage, and seller contact details. Compare listings across makes, models, and locations to support vehicle research and purchasing decisions.
exoticcartrader.com API
Search and browse exotic, collector, and classic car listings with detailed vehicle information including specs, VIN numbers, photos, and lot details. Discover featured vehicles by make or category, read expert reviews, and stay updated with industry blog posts all in one place.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
carsales.com API
Search for cars on Carsales and retrieve detailed listings with technical specifications, makes, and models. Filter and browse available vehicles by make to find exactly what you're looking for.