# Finder Porsche — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and compare Porsche vehicles across dealer listings to find detailed pricing, specifications, equipment, and technical data all in one place. Get comprehensive vehicle history reports and filter options to quickly narrow down your ideal Porsche match.

**Category:** Automotive | **Website:** [finder.porsche.com/us/en-US/search/911?model=911&position=Sonoma,38.2828,-122.4677,100&category=911-gt3](https://finder.porsche.com/us/en-US/search/911?model=911&position=Sonoma,38.2828,-122.4677,100&category=911-gt3) | **Docs:** [parse.bot/marketplace/837e0ebb-9f37-470d-a58d-52254b0a99c5/finder-porsche-com-api](https://parse.bot/marketplace/837e0ebb-9f37-470d-a58d-52254b0a99c5/finder-porsche-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-finder-porsche-com-api-837e0ebb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_filter_counts

Get available filter options and their hit counts for a vehicle search configuration. Returns counts for conditions, body types, exterior and interior colors, transmissions, equipment, model categories, model generations, sellers, drivetrain, engine type, and more. Useful for building dynamic filter UIs or understanding market availability before searching.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Model category slug to narrow filter counts. |
| `lat` | string | No | Latitude of search center in decimal degrees. |
| `lng` | string | No | Longitude of search center in decimal degrees. |
| `location` | string | No | Location name for geographic scoping. |
| `model` | string | No | Model series to get filter counts for. |
| `radius` | string | No | Search radius in miles. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-finder-porsche-com-api-837e0ebb/get_filter_counts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","lat":"<string>","lng":"<string>","location":"<string>","model":"<string>","radius":"<string>"}'
```

### get_listing_detail

Get comprehensive details for a specific vehicle listing including technical specifications (engine, performance, dimensions), full equipment lists organized by category, gallery images, warranty information, condition history, and seller details. Requires the listing_url_slug from search_listings results. Returns significantly more data than the search summary including VIN, stock number, and structured equipment options with descriptions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | No | The listing ID as fallback identifier (e.g., '7078KL'). Used when listing_slug is unavailable. |
| `listing_slug` | string | Yes | The listing URL slug (e.g., 'porsche-911-turbo-s-my23-preowned-7078KL'). Available from search_listings results as listing_url_slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-finder-porsche-com-api-837e0ebb/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>","listing_slug":"<string>"}'
```

### get_vehicle_history_report

Get the Carfax vehicle history report URL for a specific listing. Returns a direct link to the Carfax report page for the vehicle. Requires the listing ID available from search_listings results. New vehicles may return a null report_url.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | The listing ID (e.g., '7078KL'). Available from search_listings results as id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-finder-porsche-com-api-837e0ebb/get_vehicle_history_report \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### search_listings

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | 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. |
| `condition` | string | No | Vehicle condition filter. Accepted values: 'preowned', 'new', or empty string for all conditions. |
| `lat` | string | No | Latitude of search center in decimal degrees. |
| `lng` | string | No | Longitude of search center in decimal degrees. |
| `location` | string | No | Location name used as the search center for geographic filtering. |
| `model` | string | No | Model series to search within. Accepted values include '911', '718', 'cayenne', 'taycan', 'macan', 'panamera'. |
| `radius` | string | No | Search radius in miles from the search center. |
| `sort` | string | No | Sort order for results. Empty string uses default relevance sorting. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-finder-porsche-com-api-837e0ebb/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","condition":"<string>","lat":"<string>","lng":"<string>","location":"<string>","model":"<string>","radius":"<string>","sort":"<string>"}'
```
