Otto.de Scraper

  • lexis-solutions/otto-de-scraper
  • Modified
  • Users 5
  • Runs 164
  • Created by Author's avatarLexis Solutions

The Otto.de Apify Scraper is an automated tool for extracting valuable data from Otto.de - one of the leading e-commerce platforms in Germany. It provides businesses with insights for market analysis, competitor monitoring, and price tracking. Ideal for e-commerce and market research.

Free trial for 3 days

Then $25.00/month

No credit card required now

Otto.de Scraper

Free trial for 3 days

Then $25.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://www.otto.de/haushalt/trockner/waermepumpentrockner/?l=gq&o=120&c=Trockner" }],
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("lexis-solutions/otto-de-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)