Alert

Actor is under maintenance

This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

Turo Car Listing Scraper

  • genial_candlestand/turo-scraper
  • Modified
  • Users 8
  • Runs 127
  • Created by Author's avatarFlowo

Powerful Turo.com scraper to extract data from Turo car listings. Download Turo listings data as an HTML, JSON, CSV, Excel, or XML doc.

Free trial for 3 days

Then $30.00/month

No credit card required now

Turo Car Listing Scraper

Free trial for 3 days

Then $30.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {
    "startUrls": [{ "url": "https://turo.com/us/en/search?country=US&defaultZoomLevel=11&delivery=true&deliveryLocationType=airport&endDate=08%2F12%2F2023&endTime=10%3A00&isMapSearch=false&itemsPerPage=200&latitude=42.36561&location=BOS%20-%20Boston%20Logan%20International%20Airport&locationType=AIRPORT&longitude=-71.00956&pickupType=ALL&placeId=ChIJN0na1RRw44kRRFEtH8OUkww&sortType=RELEVANCE&startDate=08%2F09%2F2023&startTime=10%3A00&useDefaultMaximumDistance=true" }],
    "queries": ["Boston, MA"],
    "limit": 15,
    "minConcurrency": 1,
    "maxConcurrency": 3,
    "maxRequestRetries": 2,
    "maxRequestsPerCrawl": 1000,
    "handlePageTimeoutSecs": 60,
}

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

# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)