# Turo Scraper - Car Rental Marketplace, Prices & Ratings (`thirdwatch/turo-scraper`) Actor

Scrape Turo car rental listings by location and dates. Returns make, model, year, daily/weekly/monthly pricing, ratings, host info, and images.

- **URL**: https://apify.com/thirdwatch/turo-scraper.md
- **Developed by:** [Thirdwatch](https://apify.com/thirdwatch) (community)
- **Categories:** Travel
- **Stats:** 2 total users, 1 monthly users, 33.3% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Turo Scraper

Scrape car rental listings from [Turo.com](https://turo.com) — the world's largest peer-to-peer car sharing marketplace. Extract vehicle details, pricing, ratings, host information, and availability by location.

### What data can you get from Turo?

For each car listing, the scraper returns:

- **Vehicle details**: make, model, year, type (car/SUV/truck/minivan), trim
- **Pricing**: average daily price in USD
- **Ratings & reviews**: host rating (out of 5), completed trip count
- **Host info**: host ID, All-Star Host status
- **Location**: city, state, country, latitude/longitude, distance from search center
- **Images**: high-resolution vehicle photos
- **Listing metadata**: new listing flag, delivery availability, tags, badges
- **Direct URL**: link to the listing on Turo

### Input

| Field | Type | Description |
|-------|------|-------------|
| `locations` | string[] | **Required.** City names or airport codes to search. Examples: `"Los Angeles, CA"`, `"San Francisco, CA"`, `"ORD"` |
| `startDate` | string | Trip start date (MM/DD/YYYY). Defaults to 3 days from now |
| `endDate` | string | Trip end date (MM/DD/YYYY). Defaults to 6 days from now |
| `startTime` | string | Pickup time. Options: `06:00` to `22:00` (hourly). Default: `"10:00"` |
| `endTime` | string | Return time. Options: `06:00` to `22:00` (hourly). Default: `"10:00"` |
| `sortBy` | string | Sort order: `RELEVANCE`, `PRICE`, or `DISTANCE` |
| `vehicleType` | string | Filter: `all`, `cars`, `suvs`, `minivans`, or `trucks` |
| `maxResults` | integer | Max results per location (1–200). Default: 50 |

#### Example input

```json
{
  "locations": ["Los Angeles, CA", "San Francisco, CA"],
  "startDate": "06/01/2026",
  "endDate": "06/04/2026",
  "sortBy": "PRICE",
  "vehicleType": "suvs",
  "maxResults": 50
}
````

### Output

```json
{
  "vehicle_id": 3688538,
  "make": "Ford",
  "model": "Mustang",
  "year": 2026,
  "type": "CAR",
  "daily_price": 36.55,
  "currency": "USD",
  "rating": 5.0,
  "trip_count": 7,
  "host_id": 53896354,
  "all_star_host": false,
  "new_listing": false,
  "distance_miles": 2.8,
  "city": "Los Angeles",
  "state": "CA",
  "country": "US",
  "latitude": 34.0747,
  "longitude": -118.2844,
  "is_delivery": false,
  "image_url": "https://images.turo.com/media/vehicle/images/anpvPY7FTA6HuUxLblBchg.heic",
  "url": "https://turo.com/us/en/car-rental/united-states/los-angeles-ca/ford/mustang/3688538",
  "tags": [],
  "badges": [],
  "source_location": "Los Angeles, CA"
}
```

### Use cases

- **Price comparison**: Track car rental prices across cities and dates
- **Market research**: Analyze the peer-to-peer car rental market by vehicle type, pricing, and ratings
- **Travel planning**: Find the best-rated cars in your destination city
- **Fleet analytics**: Monitor vehicle availability and pricing trends
- **Competitive intelligence**: Compare Turo prices against traditional rental agencies

### Limitations

- Turo caps search results at 200 vehicles per location
- Detailed pricing breakdown (taxes, fees) requires visiting individual listing pages, which is not included in this version
- Only US locations are supported (Turo operates in the US, Canada, UK, and France)
- Turo has aggressive anti-bot protection — occasional runs may return fewer results if Cloudflare blocks a particular proxy IP

### Tips for best results

1. **Be specific with locations**: Use "City, State" format (e.g., "Los Angeles, CA") rather than just city names
2. **Set realistic dates**: Turo requires future dates. The scraper defaults to 3–6 days from now
3. **Use fewer locations per run**: Browser reuse works across locations, but each new location adds ~50s of navigation time
4. **Sort by PRICE** if you want the cheapest options first

# Actor input Schema

## `locations` (type: `array`):

Locations to search (city names or airport codes). Examples: "Los Angeles, CA", "San Francisco, CA", "ORD" (Chicago O'Hare).

## `startDate` (type: `string`):

Trip start date in MM/DD/YYYY format. Defaults to 3 days from now if empty.

## `endDate` (type: `string`):

Trip end date in MM/DD/YYYY format. Defaults to 6 days from now if empty.

## `startTime` (type: `string`):

Pickup time.

## `endTime` (type: `string`):

Return time.

## `sortBy` (type: `string`):

How to sort search results.

## `vehicleType` (type: `string`):

Filter by vehicle type.

## `maxResults` (type: `integer`):

Maximum car listings per location. Turo caps at ~200 per search.

## `proxyConfiguration` (type: `object`):

Proxy settings. US RESIDENTIAL proxy required for Turo.

## Actor input object example

```json
{
  "locations": [
    "Los Angeles, CA",
    "New York, NY",
    "Miami, FL",
    "San Francisco, CA",
    "Chicago, IL",
    "Las Vegas, NV",
    "Houston, TX",
    "Phoenix, AZ",
    "Seattle, WA",
    "Denver, CO",
    "Atlanta, GA",
    "Orlando, FL",
    "San Diego, CA",
    "Dallas, TX",
    "Boston, MA"
  ],
  "startTime": "10:00",
  "endTime": "10:00",
  "sortBy": "RELEVANCE",
  "vehicleType": "all",
  "maxResults": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "locations": [
        "Los Angeles, CA",
        "New York, NY",
        "Miami, FL",
        "San Francisco, CA",
        "Chicago, IL",
        "Las Vegas, NV",
        "Houston, TX",
        "Phoenix, AZ",
        "Seattle, WA",
        "Denver, CO",
        "Atlanta, GA",
        "Orlando, FL",
        "San Diego, CA",
        "Dallas, TX",
        "Boston, MA"
    ],
    "maxResults": 50,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("thirdwatch/turo-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "locations": [
        "Los Angeles, CA",
        "New York, NY",
        "Miami, FL",
        "San Francisco, CA",
        "Chicago, IL",
        "Las Vegas, NV",
        "Houston, TX",
        "Phoenix, AZ",
        "Seattle, WA",
        "Denver, CO",
        "Atlanta, GA",
        "Orlando, FL",
        "San Diego, CA",
        "Dallas, TX",
        "Boston, MA",
    ],
    "maxResults": 50,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("thirdwatch/turo-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "locations": [
    "Los Angeles, CA",
    "New York, NY",
    "Miami, FL",
    "San Francisco, CA",
    "Chicago, IL",
    "Las Vegas, NV",
    "Houston, TX",
    "Phoenix, AZ",
    "Seattle, WA",
    "Denver, CO",
    "Atlanta, GA",
    "Orlando, FL",
    "San Diego, CA",
    "Dallas, TX",
    "Boston, MA"
  ],
  "maxResults": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call thirdwatch/turo-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=thirdwatch/turo-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Turo Scraper - Car Rental Marketplace, Prices & Ratings",
        "description": "Scrape Turo car rental listings by location and dates. Returns make, model, year, daily/weekly/monthly pricing, ratings, host info, and images.",
        "version": "1.0",
        "x-build-id": "sR8n1LgSc2HLtEovB"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/thirdwatch~turo-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-thirdwatch-turo-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/thirdwatch~turo-scraper/runs": {
            "post": {
                "operationId": "runs-sync-thirdwatch-turo-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/thirdwatch~turo-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-thirdwatch-turo-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "locations"
                ],
                "properties": {
                    "locations": {
                        "title": "Locations",
                        "type": "array",
                        "description": "Locations to search (city names or airport codes). Examples: \"Los Angeles, CA\", \"San Francisco, CA\", \"ORD\" (Chicago O'Hare).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "startDate": {
                        "title": "Start Date",
                        "type": "string",
                        "description": "Trip start date in MM/DD/YYYY format. Defaults to 3 days from now if empty."
                    },
                    "endDate": {
                        "title": "End Date",
                        "type": "string",
                        "description": "Trip end date in MM/DD/YYYY format. Defaults to 6 days from now if empty."
                    },
                    "startTime": {
                        "title": "Start Time",
                        "enum": [
                            "06:00",
                            "07:00",
                            "08:00",
                            "09:00",
                            "10:00",
                            "11:00",
                            "12:00",
                            "13:00",
                            "14:00",
                            "15:00",
                            "16:00",
                            "17:00",
                            "18:00",
                            "19:00",
                            "20:00",
                            "21:00",
                            "22:00"
                        ],
                        "type": "string",
                        "description": "Pickup time.",
                        "default": "10:00"
                    },
                    "endTime": {
                        "title": "End Time",
                        "enum": [
                            "06:00",
                            "07:00",
                            "08:00",
                            "09:00",
                            "10:00",
                            "11:00",
                            "12:00",
                            "13:00",
                            "14:00",
                            "15:00",
                            "16:00",
                            "17:00",
                            "18:00",
                            "19:00",
                            "20:00",
                            "21:00",
                            "22:00"
                        ],
                        "type": "string",
                        "description": "Return time.",
                        "default": "10:00"
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "RELEVANCE",
                            "PRICE",
                            "DISTANCE"
                        ],
                        "type": "string",
                        "description": "How to sort search results.",
                        "default": "RELEVANCE"
                    },
                    "vehicleType": {
                        "title": "Vehicle Type",
                        "enum": [
                            "all",
                            "cars",
                            "suvs",
                            "minivans",
                            "trucks"
                        ],
                        "type": "string",
                        "description": "Filter by vehicle type.",
                        "default": "all"
                    },
                    "maxResults": {
                        "title": "Max Results Per Location",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum car listings per location. Turo caps at ~200 per search.",
                        "default": 50
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. US RESIDENTIAL proxy required for Turo.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
