Gumtree Scraper

  • voyn/gumtree-scraper
  • Modified
  • Users 27
  • Runs 15.6k
  • Created by Author's avatarFatih Köse

Export data from search results of Gumtree.com, the free classified ads, and community website. Get images, location, prices, and descriptions of the available products and adverts. Save the data as HTML, JSON, CSV, Excel, or XML.

Free trial for 3 days

Then $10.00/month

No credit card required now

Gumtree Scraper

Free trial for 3 days

Then $10.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'
{
  "gumtree_link": [
    "https://www.gumtree.com/cars/uk/page1"
  ],
  "proxy_config": {
    "useApifyProxy": true
  }
}
EOF

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