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 128
  • 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.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "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
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/genial_candlestand~turo-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'