Turo Car Listing Scraper avatar
Turo Car Listing Scraper
Try for free

3 days trial then $30.00/month - No credit card required now

View all Actors
Turo Car Listing Scraper

Turo Car Listing Scraper

genial_candlestand/turo-scraper
Try for free

3 days trial then $30.00/month - No credit card required now

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

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        {
12            "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"
13        }
14    ],
15    "queries": [
16        "Boston, MA"
17    ],
18    "limit": 15,
19    "minConcurrency": 1,
20    "maxConcurrency": 3,
21    "maxRequestRetries": 2,
22    "maxRequestsPerCrawl": 1000,
23    "handlePageTimeoutSecs": 60
24};
25
26(async () => {
27    // Run the Actor and wait for it to finish
28    const run = await client.actor("genial_candlestand/turo-scraper").call(input);
29
30    // Fetch and print Actor results from the run's dataset (if any)
31    console.log('Results from dataset');
32    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
33    const { items } = await client.dataset(run.defaultDatasetId).listItems();
34    items.forEach((item) => {
35        console.dir(item);
36    });
37})();
38
39// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 7 monthly users
  • 91.0% runs succeeded
  • 0.0 days response time
  • Created in Aug 2023
  • Modified 20 days ago