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
Flowo
Powerful Turo.com scraper to extract data from Turo car listings. Download Turo listings data as an HTML, JSON, CSV, Excel, or XML doc.
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.
import { ApifyClient } from 'apify-client';
// Initialize the ApifyClient with API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare Actor input
const 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
};
(async () => {
// Run the Actor and wait for it to finish
const run = await client.actor("genial_candlestand/turo-scraper").call(input);
// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
console.dir(item);
});
})();