apify-ultimate-scraper

von apify

Automatisierter Web-Scraper, der optimale Actors für über 55 Plattformen auswählt, darunter Instagram, TikTok, YouTube, Facebook, Google Maps und mehr. Umfasst über 55 vorkonfigurierte Actors auf 8 großen Plattformen mit anwendungsfallspezifischer Auswahlhilfe (Lead-Generierung, Influencer-Entdeckung, Markenüberwachung, Wettbewerbsanalyse, Trendforschung). Unterstützt drei Ausgabeformate: schnelle Chat-Anzeige, CSV-Export oder JSON-Export mit anpassbaren Ergebnislimits. Enthält Multi-Actor-Workflow-Muster für komplexe...

npx skills add https://github.com/apify/agent-skills --skill apify-ultimate-scraper

Universal web scraper

AI-driven data extraction from ~100 Actors across 15+ platforms via the Apify CLI.

Rules for every apify command:

  1. Pass --json for machine-readable output (stable across CLI versions).
  2. Pass --user-agent apify-agent-skills/apify-ultimate-scraper for telemetry attribution.
  3. Redirect stderr with 2>/dev/null (stderr contains progress messages that break JSON parsers).

Prerequisites

  • Apify CLI v1.5.0+ (npm install -g apify-cli)
  • Authenticated session (see below)

Authentication

If a CLI command fails with an auth error, authenticate using one of these methods:

  1. OAuth (interactive): apify login (opens browser)
  2. Environment variable: export APIFY_TOKEN=your_token_here
  3. From .env file: source .env (if the file contains APIFY_TOKEN=...)

Generate token: https://console.apify.com/settings/integrations

Workflow

Step 1: Understand goal and select Actor

Identify the target platform and use case. Read references/actor-index.md to find the right Actor.

If the task involves a multi-step pipeline, also read the matching workflow guide:

Task involves...Read
leads, contacts, emails, B2Breferences/workflows/lead-generation.md
competitor, ads, pricingreferences/workflows/competitive-intel.md
influencer, creatorreferences/workflows/influencer-vetting.md
brand, mentions, sentimentreferences/workflows/brand-monitoring.md
reviews, ratings, reputationreferences/workflows/review-analysis.md
SEO, SERP, crawl, content, RAGreferences/workflows/content-and-seo.md
analytics, engagement, performancereferences/workflows/social-media-analytics.md
trends, keywords, hashtagsreferences/workflows/trend-research.md
jobs, recruiting, candidatesreferences/workflows/job-market-and-recruitment.md
real estate, listings, hotelsreferences/workflows/real-estate-and-hospitality.md
price monitoring, e-commerce, productsreferences/workflows/ecommerce-price-monitoring.md
contact enrichment, email extractionreferences/workflows/contact-enrichment.md
knowledge base, RAG, LLM data feedreferences/workflows/knowledge-base-and-rag.md
company research, due diligencereferences/workflows/company-research.md

If no Actor matches in the index, search dynamically:

apify actors search "KEYWORDS" --user-agent apify-agent-skills/apify-ultimate-scraper --json --limit 10 2>/dev/null

From results: items[].username/items[].name (Actor ID), items[].title, items[].stats.totalUsers30Days, items[].currentPricingInfo.pricingModel.

Step 2: Fetch Actor schema and check gotchas

Fetch the input schema dynamically:

apify actors info "ACTOR_ID" --user-agent apify-agent-skills/apify-ultimate-scraper --input --json 2>/dev/null

Also read references/gotchas.md to check for common pitfalls for the selected Actor.

For Actor documentation: apify actors info "ACTOR_ID" --user-agent apify-agent-skills/apify-ultimate-scraper --readme

Step 3: Configure and run

Skip user preferences for simple lookups (e.g., "Nike's follower count"). Go straight to running with quick answer mode.

For larger tasks, confirm output format (quick answer / CSV / JSON) and result count.

Standard run (blocking):

apify actors call "ACTOR_ID" --input-file input.json --user-agent apify-agent-skills/apify-ultimate-scraper --json 2>/dev/null

Prefer --input-file input.json for large or complex inputs. For tiny inputs, inline JSON is acceptable with shell quoting: --input '{"maxItems":10}'.

From output: .id (run ID), .status, .defaultDatasetId, .stats.durationMillis

Fetch results:

apify datasets get-items DATASET_ID --user-agent apify-agent-skills/apify-ultimate-scraper --format json

For CSV: apify datasets get-items DATASET_ID --user-agent apify-agent-skills/apify-ultimate-scraper --format csv

Quick answer mode: Fetch results as JSON, pick top 5, present formatted in chat.

Save to file: Fetch results, use Write tool to save as YYYY-MM-DD_descriptive-name.csv or .json.

Large/long-running scrapes:

apify actors start "ACTOR_ID" --input-file input.json --user-agent apify-agent-skills/apify-ultimate-scraper --json 2>/dev/null

Poll: apify runs info RUN_ID --user-agent apify-agent-skills/apify-ultimate-scraper --json 2>/dev/null (check .status for SUCCEEDED).

Step 4: Deliver results

Report: result count, file location (if saved), key data fields, and links:

  • Dataset: https://console.apify.com/storage/datasets/DATASET_ID
  • Run: https://console.apify.com/actors/runs/RUN_ID

For multi-step workflows: suggest the next pipeline step from the workflow guide.

Troubleshooting

Common errors and pitfalls are documented in references/gotchas.md. Read it before running PPE (pay-per-event) Actors.

Mehr Skills von apify

bug-triage
apify
Triage offene Bug-Issues auf apify/apify-mcp-server. Analysieren, Antwortentwürfe erstellen, Genehmigung einholen, posten.
official
dig
apify
Flexible Fähigkeit zum Erkunden, Planen und Spezifizieren von Arbeiten auf dem Apify MCP-Server. Bearbeiten Sie KEINE Quelldateien – diese Fähigkeit dient nur zum Verständnis und zur Planung.
official
apify-actor-development
apify
Erstellen, debuggen und bereitstellen von serverlosen Cloud-Programmen für Web Scraping, Automatisierung und Datenverarbeitung. Unterstützt JavaScript-, TypeScript- und Python-Vorlagen mit integrierten Crawlee-, Playwright- und Cheerio-Bibliotheken für HTTP- und browserbasiertes Crawling. Beinhaltet lokale Tests über apify run mit isoliertem Speicher, Schema-Validierung für Ein-/Ausgaben und Bereitstellung auf der Apify-Plattform über apify push. Erfordert Apify CLI-Authentifizierung und zwingend erforderliche generatedBy-Metadaten in .actor/actor.json für KI...
official
apify-actorization
apify
Konvertieren Sie bestehende Projekte in serverlose Apify Actors mit sprachspezifischer SDK-Integration. Unterstützt JavaScript/TypeScript (mit Actor.init() / Actor.exit()), Python (asynchroner Kontextmanager) und jede Sprache über CLI-Wrapper. Bietet strukturierten Workflow: apify init zum Erstellen des Grundgerüsts, Anwenden von SDK-Wrapping, Konfigurieren von Eingabe-/Ausgabeschemata, lokales Testen mit apify run, dann Bereitstellung mit apify push. Enthält Eingabe- und Ausgabeschemavalidierung, Docker-Containerisierung und optionales Pay-per-Event...
official
apify-audience-analysis
apify
Extrahiere Zielgruppendemografie, Interaktionsmuster und Verhaltensdaten von Facebook, Instagram, YouTube und TikTok. Unterstützt 18+ spezialisierte Actors, die Follower-Demografie, Interaktionsmetriken, Kommentare und Profilanalysen auf allen vier Plattformen abdecken. Bietet drei Ausgabeformate: schnelle Chat-Anzeige, CSV-Export oder JSON-Export für nachgelagerte Analysen. Erfordert Apify-Token und mcpc CLI-Tool; verwendet dynamisches Schema-Fetching, um Eingaben an die Anforderungen jedes Actors anzupassen. Enthält strukturierte...
official
apify-brand-reputation-monitoring
apify
Überwachen Sie die Markenreputation auf Google Maps, Booking.com, TripAdvisor, Facebook, Instagram, YouTube und TikTok. Unterstützt 16+ dedizierte Apify Actors für Bewertungen, Ratings, Kommentare und Erwähnungen auf allen wichtigen Plattformen. Flexible Ausgabeformate: Ergebnisse im Chat anzeigen, als CSV exportieren oder als JSON für nachgelagerte Analysen speichern. Erfordert Apify-Token und Node.js 20.6+; verwendet die mcpc CLI, um Actor-Schemas und Eingabeparameter dynamisch abzurufen. Der Workflow führt Benutzer durch die Plattformauswahl,...
official
apify-competitor-intelligence
apify
Multiplattform-Wettbewerbsanalyse über Apify Actors für Google Maps, Booking.com, Facebook, Instagram, YouTube und TikTok. Umfasst 25+ spezialisierte Actors auf sieben Plattformen, jeweils optimiert für spezifische Analysetypen: Unternehmensdatenextraktion, Bewertungsvergleich, Anzeigenstrategie-Überwachung, Content-Performance und Zielgruppeneinblicke. Erfordert Apify-Token, Node.js 20.6+ und das mcpc CLI-Tool, um Actor-Schemata abzurufen und Analysen dynamisch durchzuführen. Unterstützt drei Ausgabeformate: schnelle Chat-Anzeige,...
official
apify-content-analytics
apify
Multiplattform-Inhaltsanalysen über Apify Actors für Instagram, Facebook, YouTube und TikTok. Unterstützt 17+ spezialisierte Actors für Beiträge, Reels, Stories, Kommentare, Hashtags, Follower und Werbung auf allen vier Plattformen. Ruft dynamisch Actor-Schemas über die mcpc CLI ab, um erforderliche Eingaben und verfügbare Ausgabefelder zu ermitteln. Gibt Ergebnisse in drei Formaten aus: Kurzanzeige im Chat, CSV-Export oder JSON-Export mit anpassbaren Ergebnisanzahlen. Erfordert Apify-Token in der .env-Datei und Node.js 20.6+...
official