E-Commerce Cluster
Answer natural language e-commerce questions by routing to the right Apify Actor and delivering a synthesized answer via the apify CLI.
CLI rules: Always pass --user-agent apify-awesome-skills/apify-ecommerce, --json (or the relevant --format flag on datasets get-items), and 2>/dev/null. The --user-agent flag is critical for telemetry — never omit it.
Prerequisites
(No need to check it upfront)
- Apify CLI v1.5.0+ (
npm install -g apify-cli)
jq (recommended for quick extraction and filtering; brew install jq on macOS, apt install jq on Linux)
- Authentication via one of:
Verify auth: apify info --user-agent apify-awesome-skills/apify-ecommerce — should show username and userId.
Workflow
Copy this checklist and track progress:
Task Progress:
- [ ] Step 1: Detect intent and select Actor
- [ ] Step 2: Fetch Actor schema
- [ ] Step 3: Ask user preferences (format, result count)
- [ ] Step 4: Run the Actor and fetch results
- [ ] Step 5: Analyze results and deliver synthesized answer
Step 1: Detect Intent and Select Actor
Classify the user's message into an intent, then pick the right Actor.
Intent signals:
| Signals in user message |
Intent |
| price, cost, cheapest, compare prices, pricing |
pricing |
| review, rating, sentiment, stars, feedback |
reviews |
| bestseller, top selling, most popular, trending |
bestsellers |
| seller, vendor, reseller, who sells |
sellers |
| all products from, scrape store, full catalog |
store-scrape |
| what platform, built on, tech stack, Shopify or WooCommerce |
tech-stack |
| SEO, listing quality, product page audit |
seo-audit |
| competitor funnel, competitor pricing, conversion elements |
competitor |
| search intent, keyword intent, SERP intent |
search-intent |
| match products, same product on different platforms |
product-matching |
| restaurant, food delivery, DoorDash, UberEats, TheFork |
food-delivery |
| enrich store, store metadata, store list |
store-enrichment |
| event, concert, ticket, Eventbrite |
events |
| property, real estate, house listing, Realtor |
real-estate |
| Facebook ads, Meta ads, ad library, competitor ads |
ads-intelligence |
| classified, Craigslist, used item for sale |
classifieds |
| car, used car, vehicle, automotive, Webmotors |
automotive |
| pins, inspiration, Pinterest boards, visual search, Pinterest trends |
content-discovery |
| TikTok Shop, TikTok store, TikTok creator |
tiktok-shop |
| website for sale, domain for sale, Flippa |
website-marketplace |
If multiple intents are detected, ask: "Do you want [intent A] or [intent B]?"
Actor routing table — always try Primary first, switch to Fallback only if it fails or returns 0 results. The Primary actor (apify/e-commerce-scraping-tool) handles most intents once you feed the right input mode:
- Have target URLs (a listing, profile, or category page) →
detailsUrls / listingUrls.
- Have a keyword/marketplace →
keyword + marketplaces (product-details mode).
- Broad discovery (competitor, search-intent, classifieds, automotive, real-estate, website-marketplace, events) → use
searchEngineKeyword (search-engine mode) or keyword/detailsUrls depending on whether you have a query or URLs.
Exception — skip the Primary and go straight to the Fallback for intents the Primary genuinely can't do (different data source or specialized analysis): tech-stack, seo-audit, store-enrichment, product-matching, ads-intelligence, content-discovery (Pinterest), and tiktok-shop. Routing these to the Primary wastes a run and credits.
| Intent |
Platform |
Primary Actor |
Fallback Actor |
pricing |
Amazon / Walmart / generic |
apify/e-commerce-scraping-tool |
— |
pricing |
eBay |
apify/e-commerce-scraping-tool |
ivanvs/ebay-scraper-pay-per-result |
pricing |
Etsy |
apify/e-commerce-scraping-tool |
epctex/etsy-scraper |
pricing |
Google Shopping |
apify/e-commerce-scraping-tool |
epctex/google-shopping-scraper |
pricing |
Facebook Marketplace |
apify/e-commerce-scraping-tool |
apify/facebook-marketplace-scraper |
pricing |
SHEIN |
apify/e-commerce-scraping-tool |
seamless_coffer/shein-product-scraper |
pricing |
Lazada |
apify/e-commerce-scraping-tool |
fatihtahta/lazada-scraper |
pricing |
Canadian Tire |
apify/e-commerce-scraping-tool |
azzouzana/canadiantire-ca-scraper |
pricing |
Tesco |
apify/e-commerce-scraping-tool |
radeance/tesco-scraper |
pricing |
Shopify |
apify/e-commerce-scraping-tool |
trovevault/shopify-products-scraper |
pricing |
WooCommerce |
apify/e-commerce-scraping-tool |
trovevault/woocommerce-products-scraper |
reviews |
Amazon / Walmart / generic |
apify/e-commerce-scraping-tool |
junglee/amazon-reviews-scraper |
reviews |
Trustpilot |
apify/e-commerce-scraping-tool |
casper11515/trustpilot-reviews-scraper |
reviews |
TheFork |
apify/e-commerce-scraping-tool |
jdtpnjtp/thefork-restaurant-scraper-advanced |
bestsellers |
Amazon |
apify/e-commerce-scraping-tool |
junglee/amazon-bestsellers |
sellers |
Amazon |
apify/e-commerce-scraping-tool |
junglee/amazon-seller-scraper |
sellers |
eBay |
apify/e-commerce-scraping-tool |
ivanvs/ebay-scraper-pay-per-result |
store-scrape |
Shopify |
apify/e-commerce-scraping-tool |
trovevault/shopify-products-scraper |
store-scrape |
WooCommerce |
apify/e-commerce-scraping-tool |
trovevault/woocommerce-products-scraper |
store-scrape |
Amazon |
apify/e-commerce-scraping-tool |
junglee/Amazon-crawler |
store-scrape |
Flippa |
apify/e-commerce-scraping-tool |
scraped/flippa-scraper |
tech-stack |
any |
apify/e-commerce-scraping-tool |
trovevault/e-commerce-tech-stack-detector |
seo-audit |
any |
apify/e-commerce-scraping-tool |
trovevault/product-listing-seo-auditor |
competitor |
any |
apify/e-commerce-scraping-tool |
trovevault/competitor-intelligence-scraper---funnel-pricing-conversion |
search-intent |
any |
apify/e-commerce-scraping-tool |
trovevault/ai-serp-intent-extractor---search-intent-classifier |
product-matching |
any |
apify/e-commerce-scraping-tool |
— |
store-enrichment |
any |
apify/e-commerce-scraping-tool |
trovevault/e-commerce-store-data-enricher |
food-delivery |
DoorDash |
apify/e-commerce-scraping-tool |
tri_angle/doordash-store-details-scraper |
food-delivery |
UberEats |
apify/e-commerce-scraping-tool |
e-commerce/ubereats-reviews-scraper |
food-delivery |
TheFork |
apify/e-commerce-scraping-tool |
jdtpnjtp/thefork-restaurant-scraper-advanced |
ads-intelligence |
Facebook / Meta |
apify/e-commerce-scraping-tool |
apify/facebook-ads-scraper |
classifieds |
Craigslist |
apify/e-commerce-scraping-tool |
ivanvs/craigslist-scraper-pay-per-result |
automotive |
Webmotors |
apify/e-commerce-scraping-tool |
stealth_mode/webmotors-auto-search-scraper |
events |
Eventbrite |
apify/e-commerce-scraping-tool |
aitorsm/eventbrite |
real-estate |
Realtor.com |
apify/e-commerce-scraping-tool |
powerai/realtor-properties-search-scraper |
content-discovery |
Pinterest |
apify/e-commerce-scraping-tool |
fatihtahta/pinterest-scraper-search |
tiktok-shop |
TikTok Shop |
apify/e-commerce-scraping-tool |
lemur/tiktok-shop-creators |
website-marketplace |
Flippa |
apify/e-commerce-scraping-tool |
scraped/flippa-scraper |
Escalation — if both Primary and Fallback fail or return 0 results, discover a current alternative live instead of guessing an ID:
# Find relevant, well-rated, pay-per-event Actors for the platform/intent.
# Keep the default relevance sort — `--sort-by popularity` surfaces generic
# big-name scrapers over the platform you actually asked for.
apify actors search "PLATFORM or INTENT keywords" \
--pricing-model PAY_PER_EVENT --limit 10 --json \
--user-agent apify-awesome-skills/apify-ecommerce 2>/dev/null \
| jq '[.items[]
| select(.stats.totalUsers > 100 and .actorReviewRating > 4.5)
| {id: (.username + "/" + .name), users: .stats.totalUsers,
rating: (.actorReviewRating | (. * 100 | round / 100)),
pricing: .currentPricingInfo.pricingModel}]'
Pick the top match. Before running it, confirm it requests only limited permissions (check the Actor's Store page / README — prefer Actors that don't require full account access). If the PAY_PER_EVENT filter returns nothing, drop the --pricing-model flag and re-run, keeping the ≥100-users and ≥4.5-rating bar.
Step 2: Fetch Actor Schema
Fetch the Actor summary, input schema, and README:
# Summary (title, description, pricing, stats)
apify actors info "ACTOR_ID" --user-agent apify-awesome-skills/apify-ecommerce --json 2>/dev/null
# Input schema — use --input WITHOUT --json to get the clean schema directly.
# (Adding --json returns the full ~250 KB actor object instead, with the schema
# buried as an escaped string under .taggedBuilds.latest.build.inputSchema.)
apify actors info "ACTOR_ID" --user-agent apify-awesome-skills/apify-ecommerce --input 2>/dev/null
# README (capabilities, examples, gotchas)
apify actors info "ACTOR_ID" --user-agent apify-awesome-skills/apify-ecommerce --readme 2>/dev/null
Replace ACTOR_ID with the selected Actor (e.g., apify/e-commerce-scraping-tool).
Primary actor input cheat-sheet. apify/e-commerce-scraping-tool is mode-driven — pick fields by intent (always set the matching max…Results cap):
| Intent |
Minimal input |
pricing (keyword) |
{"keyword": "wireless earbuds", "marketplaces": ["www.amazon.com"], "maxProductResults": 50} |
pricing (specific URLs) |
{"detailsUrls": [{"url": "https://…"}], "maxProductResults": 50} |
store-scrape (category) |
{"listingUrls": [{"url": "https://…/category"}], "maxProductResults": 500} |
reviews |
{"keywordReviews": "echo dot", "marketplacesReviews": ["www.amazon.com"], "sortReview": "Most recent", "maxReviewResults": 200} |
sellers |
{"sellerUrls": [{"url": "https://…"}], "maxSellerResults": 50} |
pricing (Google Shopping) |
{"searchEngineKeyword": "ps5", "countryCode": "us", "maxSearchEngineResults": 50} |
food-delivery |
{"keywordDelivery": "pizza", "marketplacesDelivery": ["www.doordash.com"], "addressDelivery": "New York, NY", "maxDeliveryResults": 50} |
For any other actor (or fields not listed), fetch the schema with the --input command above.
Step 3: Ask User Preferences
Before running, ask:
- Output format:
- Quick answer (default) — synthesized answer in chat, no file saved
- CSV — full export saved to disk
- JSON — full export saved to disk
- Result count — suggest defaults by intent:
| Intent |
Default |
pricing |
50 products |
reviews |
200 reviews |
bestsellers |
100 items |
sellers |
50 sellers |
store-scrape |
all (unlimited) |
food-delivery |
50 restaurants |
| all others |
20–50 |
Cost safety: Always set a sensible result limit in the Actor input. For the Primary actor the cap field is mode-specific — maxProductResults, maxReviewResults, maxSellerResults, maxSearchEngineResults, or maxDeliveryResults (there is no single maxResults). For Fallback actors, use whatever the schema exposes (maxResults, resultsLimit, maxItems, maxCrawledPages, etc.). Default to the per-intent values above unless the user explicitly asks for more. Warn the user before running large scrapes (1000+ results) as they consume more Apify credits.
Step 4: Run the Actor and Fetch Results
Two steps: run the Actor (blocks until done), then fetch dataset items in the requested format.
Run the Actor — returns run metadata as JSON; extract defaultDatasetId for the next step:
apify actors call "ACTOR_ID" -i 'JSON_INPUT' \
--user-agent apify-awesome-skills/apify-ecommerce --json 2>/dev/null
From the output use .id (run ID), .status (should be SUCCEEDED), and .defaultDatasetId.
Fetch results — pick the variant based on the user's preference:
# Quick answer: total count + fields + top 5 in chat (no file)
apify datasets info DATASET_ID --json \
--user-agent apify-awesome-skills/apify-ecommerce 2>/dev/null \
| jq '{itemCount, fields, consoleUrl}'
apify datasets get-items DATASET_ID --limit 5 \
--user-agent apify-awesome-skills/apify-ecommerce --format json 2>/dev/null
# CSV file
apify datasets get-items DATASET_ID \
--user-agent apify-awesome-skills/apify-ecommerce --format csv 2>/dev/null > YYYY-MM-DD_OUTPUT_FILE.csv
# JSON file
apify datasets get-items DATASET_ID \
--user-agent apify-awesome-skills/apify-ecommerce --format json 2>/dev/null > YYYY-MM-DD_OUTPUT_FILE.json
Other --format options: jsonl, xlsx, xml, rss, html. Use --offset N to paginate large datasets.
Tip: for anything more than a quick peek, save the dataset to a local file first (with > file.json / > file.csv) and run further analysis from disk. apify datasets get-items always streams over the network, so piping it straight into jq re-downloads the whole thing every iteration.
Combining with jq for quick extraction:
Treat jq as a complement to apify datasets get-items, not a replacement: server-side --limit / --offset / --format keeps cost and bandwidth down. Use jq on a sample item or on a file you already saved.
# Discover real field names from one sample item (Actor outputs vary —
# use this before composing further jq queries)
apify datasets get-items DATASET_ID --limit 1 --format json \
--user-agent apify-awesome-skills/apify-ecommerce 2>/dev/null \
| jq '.[0]'
# Quick aggregation from a JSON file you already saved with the commands above
jq '[.[] | select(.rating != null and .rating >= 4.5)] | length' YYYY-MM-DD_OUTPUT_FILE.json
Step 5: Analyze Results and Deliver Answer
After the run completes, deliver a direct synthesized answer — not a data dump:
- Pricing: price range, average, top 5 cheapest with URLs
- Reviews: average rating, top 3 positive and negative themes, recent snippets
- Bestsellers: top 10 by rank with name, price, rating, URL
- Sellers: total sellers, price range per seller, unauthorized seller flags
- Store-scrape: total products, category breakdown, price range, stock summary
- Tech-stack: platform detected, confidence level, notable plugins
- Food delivery: restaurant count, average rating, price tier breakdown
- Ads intelligence: total ads, active/inactive split, top creative formats
Error Handling
- Auth error → run
apify login, or set APIFY_TOKEN env var
Actor not found → check Actor ID spelling in the routing table
- Run status
FAILED → open the console URL (.consoleUrl from run metadata) for logs
- Timeout / very long run → pass
--timeout <seconds> to apify actors call
No results → broaden the keyword, switch to the Fallback Actor, then use the Escalation discovery command (under Step 1) if both fail
proxy is required → add "proxy": {"useApifyProxy": true} to the Actor input
Platform not detected → default to apify/e-commerce-scraping-tool with generic intent
Gotchas
--input --json is a trap. It returns the full ~250 KB actor object, not the schema. Use apify actors info ID --input --user-agent apify-awesome-skills/apify-ecommerce 2>/dev/null (no --json) for the clean schema; only dig into .taggedBuilds.latest.build.inputSchema if you specifically need it as JSON.
- The Primary actor has no
maxResults field. Its caps are mode-specific (maxProductResults, maxReviewResults, maxSellerResults, maxSearchEngineResults, maxDeliveryResults). Setting maxResults does nothing and the run scrapes unbounded.
- The Primary handles most intents via the right input mode (URLs →
detailsUrls/listingUrls; query → keyword or searchEngineKeyword), including competitor, search-intent, classifieds, automotive, real-estate, website-marketplace, and events. It genuinely can't do tech-stack, seo-audit, store-enrichment, product-matching, ads-intelligence, content-discovery (Pinterest), or tiktok-shop — route those straight to the Fallback.
apify actors call -i expects valid JSON on one line. For inputs with URL arrays or quotes, write a file and pass -i @input.json instead of inlining — shell quoting silently corrupts complex inputs.
datasets get-items always streams over the network. Save to a file once (> file.json), then run jq against the file — don't re-pipe the command into jq repeatedly or you re-download every time.
apify actors search --sort-by popularity ignores relevance. It returns the biggest-name scrapers regardless of your query (an "etsy" search surfaces Instagram/Google Maps Actors). For escalation discovery keep the default relevance sort and filter on stats.totalUsers/actorReviewRating instead.
marketplaces values are full domain slugs, e.g. ["www.amazon.com", "www.ebay.com"] — not "amazon" or display names. Delivery mode is even narrower: marketplacesDelivery only accepts ["www.doordash.com", "www.instacart.com"] (no UberEats — use the e-commerce/ubereats-reviews-scraper fallback for that). Always confirm accepted values from the --input schema's enum before guessing.
1---2name: apify-ecommerce3description: Scrape e-commerce data for pricing, reviews, bestsellers, and seller discovery across 30+ platforms including Amazon, Walmart, eBay, Shopify, WooCommerce, and more. Use when user asks about product prices, competitor analysis, store scraping, tech stack detection, food delivery, real estate, or marketplace intelligence.4---5
6# E-Commerce Cluster
7
8Answer natural language e-commerce questions by routing to the right Apify Actor and delivering a synthesized answer via the `apify` CLI.
9
10**CLI rules:** Always pass `--user-agent apify-awesome-skills/apify-ecommerce`, `--json` (or the relevant `--format` flag on `datasets get-items`), and `2>/dev/null`. The `--user-agent` flag is critical for telemetry — never omit it.
11
12## Prerequisites
13(No need to check it upfront)
14
15- Apify CLI v1.5.0+ (`npm install -g apify-cli`)
16- `jq` (recommended for quick extraction and filtering; `brew install jq` on macOS, `apt install jq` on Linux)
17- Authentication via one of:
18 - `apify login` (OAuth, opens browser)
19 - `APIFY_TOKEN` env variable (e.g. `export APIFY_TOKEN=...` or `.env` file)
20 - Token from [Apify Console → Settings → Integrations](https://console.apify.com/settings/integrations)
21
22Verify auth: `apify info --user-agent apify-awesome-skills/apify-ecommerce` — should show username and userId.
23
24## Workflow
25
26Copy this checklist and track progress:
27
28```
29Task Progress:
30- [ ] Step 1: Detect intent and select Actor
31- [ ] Step 2: Fetch Actor schema
32- [ ] Step 3: Ask user preferences (format, result count)
33- [ ] Step 4: Run the Actor and fetch results
34- [ ] Step 5: Analyze results and deliver synthesized answer
35```
36
37### Step 1: Detect Intent and Select Actor
38
39Classify the user's message into an intent, then pick the right Actor.
40
41**Intent signals:**
42
43| Signals in user message | Intent |
44|------------------------|--------|
45| price, cost, cheapest, compare prices, pricing | `pricing` |
46| review, rating, sentiment, stars, feedback | `reviews` |
47| bestseller, top selling, most popular, trending | `bestsellers` |
48| seller, vendor, reseller, who sells | `sellers` |
49| all products from, scrape store, full catalog | `store-scrape` |
50| what platform, built on, tech stack, Shopify or WooCommerce | `tech-stack` |
51| SEO, listing quality, product page audit | `seo-audit` |
52| competitor funnel, competitor pricing, conversion elements | `competitor` |
53| search intent, keyword intent, SERP intent | `search-intent` |
54| match products, same product on different platforms | `product-matching` |
55| restaurant, food delivery, DoorDash, UberEats, TheFork | `food-delivery` |
56| enrich store, store metadata, store list | `store-enrichment` |
57| event, concert, ticket, Eventbrite | `events` |
58| property, real estate, house listing, Realtor | `real-estate` |
59| Facebook ads, Meta ads, ad library, competitor ads | `ads-intelligence` |
60| classified, Craigslist, used item for sale | `classifieds` |
61| car, used car, vehicle, automotive, Webmotors | `automotive` |
62| pins, inspiration, Pinterest boards, visual search, Pinterest trends | `content-discovery` |
63| TikTok Shop, TikTok store, TikTok creator | `tiktok-shop` |
64| website for sale, domain for sale, Flippa | `website-marketplace` |
65
66If multiple intents are detected, ask: *"Do you want [intent A] or [intent B]?"*
67
68**Actor routing table — always try Primary first, switch to Fallback only if it fails or returns 0 results.** The Primary actor (`apify/e-commerce-scraping-tool`) handles most intents once you feed the right input mode:
69
70- **Have target URLs** (a listing, profile, or category page) → `detailsUrls` / `listingUrls`.
71- **Have a keyword/marketplace** → `keyword` + `marketplaces` (product-details mode).
72- **Broad discovery (competitor, search-intent, classifieds, automotive, real-estate, website-marketplace, events)** → use `searchEngineKeyword` (search-engine mode) or `keyword`/`detailsUrls` depending on whether you have a query or URLs.
73
74**Exception — skip the Primary and go straight to the Fallback** for intents the Primary genuinely can't do (different data source or specialized analysis): `tech-stack`, `seo-audit`, `store-enrichment`, `product-matching`, `ads-intelligence`, `content-discovery` (Pinterest), and `tiktok-shop`. Routing these to the Primary wastes a run and credits.
75
76| Intent | Platform | Primary Actor | Fallback Actor |
77|--------|----------|---------------|----------------|
78| `pricing` | Amazon / Walmart / generic | `apify/e-commerce-scraping-tool` | — |
79| `pricing` | eBay | `apify/e-commerce-scraping-tool` | `ivanvs/ebay-scraper-pay-per-result` |
80| `pricing` | Etsy | `apify/e-commerce-scraping-tool` | `epctex/etsy-scraper` |
81| `pricing` | Google Shopping | `apify/e-commerce-scraping-tool` | `epctex/google-shopping-scraper` |
82| `pricing` | Facebook Marketplace | `apify/e-commerce-scraping-tool` | `apify/facebook-marketplace-scraper` |
83| `pricing` | SHEIN | `apify/e-commerce-scraping-tool` | `seamless_coffer/shein-product-scraper` |
84| `pricing` | Lazada | `apify/e-commerce-scraping-tool` | `fatihtahta/lazada-scraper` |
85| `pricing` | Canadian Tire | `apify/e-commerce-scraping-tool` | `azzouzana/canadiantire-ca-scraper` |
86| `pricing` | Tesco | `apify/e-commerce-scraping-tool` | `radeance/tesco-scraper` |
87| `pricing` | Shopify | `apify/e-commerce-scraping-tool` | `trovevault/shopify-products-scraper` |
88| `pricing` | WooCommerce | `apify/e-commerce-scraping-tool` | `trovevault/woocommerce-products-scraper` |
89| `reviews` | Amazon / Walmart / generic | `apify/e-commerce-scraping-tool` | `junglee/amazon-reviews-scraper` |
90| `reviews` | Trustpilot | `apify/e-commerce-scraping-tool` | `casper11515/trustpilot-reviews-scraper` |
91| `reviews` | TheFork | `apify/e-commerce-scraping-tool` | `jdtpnjtp/thefork-restaurant-scraper-advanced` |
92| `bestsellers` | Amazon | `apify/e-commerce-scraping-tool` | `junglee/amazon-bestsellers` |
93| `sellers` | Amazon | `apify/e-commerce-scraping-tool` | `junglee/amazon-seller-scraper` |
94| `sellers` | eBay | `apify/e-commerce-scraping-tool` | `ivanvs/ebay-scraper-pay-per-result` |
95| `store-scrape` | Shopify | `apify/e-commerce-scraping-tool` | `trovevault/shopify-products-scraper` |
96| `store-scrape` | WooCommerce | `apify/e-commerce-scraping-tool` | `trovevault/woocommerce-products-scraper` |
97| `store-scrape` | Amazon | `apify/e-commerce-scraping-tool` | `junglee/Amazon-crawler` |
98| `store-scrape` | Flippa | `apify/e-commerce-scraping-tool` | `scraped/flippa-scraper` |
99| `tech-stack` | any | `apify/e-commerce-scraping-tool` | `trovevault/e-commerce-tech-stack-detector` |
100| `seo-audit` | any | `apify/e-commerce-scraping-tool` | `trovevault/product-listing-seo-auditor` |
101| `competitor` | any | `apify/e-commerce-scraping-tool` | `trovevault/competitor-intelligence-scraper---funnel-pricing-conversion` |
102| `search-intent` | any | `apify/e-commerce-scraping-tool` | `trovevault/ai-serp-intent-extractor---search-intent-classifier` |
103| `product-matching` | any | `apify/e-commerce-scraping-tool` | — |
104| `store-enrichment` | any | `apify/e-commerce-scraping-tool` | `trovevault/e-commerce-store-data-enricher` |
105| `food-delivery` | DoorDash | `apify/e-commerce-scraping-tool` | `tri_angle/doordash-store-details-scraper` |
106| `food-delivery` | UberEats | `apify/e-commerce-scraping-tool` | `e-commerce/ubereats-reviews-scraper` |
107| `food-delivery` | TheFork | `apify/e-commerce-scraping-tool` | `jdtpnjtp/thefork-restaurant-scraper-advanced` |
108| `ads-intelligence` | Facebook / Meta | `apify/e-commerce-scraping-tool` | `apify/facebook-ads-scraper` |
109| `classifieds` | Craigslist | `apify/e-commerce-scraping-tool` | `ivanvs/craigslist-scraper-pay-per-result` |
110| `automotive` | Webmotors | `apify/e-commerce-scraping-tool` | `stealth_mode/webmotors-auto-search-scraper` |
111| `events` | Eventbrite | `apify/e-commerce-scraping-tool` | `aitorsm/eventbrite` |
112| `real-estate` | Realtor.com | `apify/e-commerce-scraping-tool` | `powerai/realtor-properties-search-scraper` |
113| `content-discovery` | Pinterest | `apify/e-commerce-scraping-tool` | `fatihtahta/pinterest-scraper-search` |
114| `tiktok-shop` | TikTok Shop | `apify/e-commerce-scraping-tool` | `lemur/tiktok-shop-creators` |
115| `website-marketplace` | Flippa | `apify/e-commerce-scraping-tool` | `scraped/flippa-scraper` |
116
117**Escalation — if both Primary and Fallback fail or return 0 results**, discover a current alternative live instead of guessing an ID:
118
119```bash
120# Find relevant, well-rated, pay-per-event Actors for the platform/intent.
121# Keep the default relevance sort — `--sort-by popularity` surfaces generic
122# big-name scrapers over the platform you actually asked for.
123apify actors search "PLATFORM or INTENT keywords" \
124 --pricing-model PAY_PER_EVENT --limit 10 --json \
125 --user-agent apify-awesome-skills/apify-ecommerce 2>/dev/null \
126 | jq '[.items[]
127 | select(.stats.totalUsers > 100 and .actorReviewRating > 4.5)
128 | {id: (.username + "/" + .name), users: .stats.totalUsers,
129 rating: (.actorReviewRating | (. * 100 | round / 100)),
130 pricing: .currentPricingInfo.pricingModel}]'
131```
132
133Pick the top match. Before running it, confirm it requests only **limited permissions** (check the Actor's Store page / README — prefer Actors that don't require full account access). If the `PAY_PER_EVENT` filter returns nothing, drop the `--pricing-model` flag and re-run, keeping the ≥100-users and ≥4.5-rating bar.
134
135### Step 2: Fetch Actor Schema
136
137Fetch the Actor summary, input schema, and README:
138
139```bash
140# Summary (title, description, pricing, stats)
141apify actors info "ACTOR_ID" --user-agent apify-awesome-skills/apify-ecommerce --json 2>/dev/null
142
143# Input schema — use --input WITHOUT --json to get the clean schema directly.
144# (Adding --json returns the full ~250 KB actor object instead, with the schema
145# buried as an escaped string under .taggedBuilds.latest.build.inputSchema.)
146apify actors info "ACTOR_ID" --user-agent apify-awesome-skills/apify-ecommerce --input 2>/dev/null
147
148# README (capabilities, examples, gotchas)
149apify actors info "ACTOR_ID" --user-agent apify-awesome-skills/apify-ecommerce --readme 2>/dev/null
150```
151
152Replace `ACTOR_ID` with the selected Actor (e.g., `apify/e-commerce-scraping-tool`).
153
154**Primary actor input cheat-sheet.** `apify/e-commerce-scraping-tool` is mode-driven — pick fields by intent (always set the matching `max…Results` cap):
155
156| Intent | Minimal input |
157|--------|---------------|
158| `pricing` (keyword) | `{"keyword": "wireless earbuds", "marketplaces": ["www.amazon.com"], "maxProductResults": 50}` |
159| `pricing` (specific URLs) | `{"detailsUrls": [{"url": "https://…"}], "maxProductResults": 50}` |
160| `store-scrape` (category) | `{"listingUrls": [{"url": "https://…/category"}], "maxProductResults": 500}` |
161| `reviews` | `{"keywordReviews": "echo dot", "marketplacesReviews": ["www.amazon.com"], "sortReview": "Most recent", "maxReviewResults": 200}` |
162| `sellers` | `{"sellerUrls": [{"url": "https://…"}], "maxSellerResults": 50}` |
163| `pricing` (Google Shopping) | `{"searchEngineKeyword": "ps5", "countryCode": "us", "maxSearchEngineResults": 50}` |
164| `food-delivery` | `{"keywordDelivery": "pizza", "marketplacesDelivery": ["www.doordash.com"], "addressDelivery": "New York, NY", "maxDeliveryResults": 50}` |
165
166For any other actor (or fields not listed), fetch the schema with the `--input` command above.
167
168### Step 3: Ask User Preferences
169
170Before running, ask:
1711. **Output format**:
172 - **Quick answer** (default) — synthesized answer in chat, no file saved
173 - **CSV** — full export saved to disk
174 - **JSON** — full export saved to disk
1752. **Result count** — suggest defaults by intent:
176
177| Intent | Default |
178|--------|---------|
179| `pricing` | 50 products |
180| `reviews` | 200 reviews |
181| `bestsellers` | 100 items |
182| `sellers` | 50 sellers |
183| `store-scrape` | all (unlimited) |
184| `food-delivery` | 50 restaurants |
185| all others | 20–50 |
186
187**Cost safety**: Always set a sensible result limit in the Actor input. For the Primary actor the cap field is **mode-specific** — `maxProductResults`, `maxReviewResults`, `maxSellerResults`, `maxSearchEngineResults`, or `maxDeliveryResults` (there is no single `maxResults`). For Fallback actors, use whatever the schema exposes (`maxResults`, `resultsLimit`, `maxItems`, `maxCrawledPages`, etc.). Default to the per-intent values above unless the user explicitly asks for more. Warn the user before running large scrapes (1000+ results) as they consume more Apify credits.
188
189### Step 4: Run the Actor and Fetch Results
190
191Two steps: run the Actor (blocks until done), then fetch dataset items in the requested format.
192
193**Run the Actor** — returns run metadata as JSON; extract `defaultDatasetId` for the next step:
194
195```bash
196apify actors call "ACTOR_ID" -i 'JSON_INPUT' \
197 --user-agent apify-awesome-skills/apify-ecommerce --json 2>/dev/null
198```
199
200From the output use `.id` (run ID), `.status` (should be `SUCCEEDED`), and `.defaultDatasetId`.
201
202**Fetch results** — pick the variant based on the user's preference:
203
204```bash
205# Quick answer: total count + fields + top 5 in chat (no file)
206apify datasets info DATASET_ID --json \
207 --user-agent apify-awesome-skills/apify-ecommerce 2>/dev/null \
208 | jq '{itemCount, fields, consoleUrl}'
209apify datasets get-items DATASET_ID --limit 5 \
210 --user-agent apify-awesome-skills/apify-ecommerce --format json 2>/dev/null
211
212# CSV file
213apify datasets get-items DATASET_ID \
214 --user-agent apify-awesome-skills/apify-ecommerce --format csv 2>/dev/null > YYYY-MM-DD_OUTPUT_FILE.csv
215
216# JSON file
217apify datasets get-items DATASET_ID \
218 --user-agent apify-awesome-skills/apify-ecommerce --format json 2>/dev/null > YYYY-MM-DD_OUTPUT_FILE.json
219```
220
221Other `--format` options: `jsonl`, `xlsx`, `xml`, `rss`, `html`. Use `--offset N` to paginate large datasets.
222
223**Tip:** for anything more than a quick peek, save the dataset to a local file first (with `> file.json` / `> file.csv`) and run further analysis from disk. `apify datasets get-items` always streams over the network, so piping it straight into `jq` re-downloads the whole thing every iteration.
224
225**Combining with `jq` for quick extraction:**
226
227Treat `jq` as a complement to `apify datasets get-items`, not a replacement: server-side `--limit` / `--offset` / `--format` keeps cost and bandwidth down. Use `jq` on a sample item or on a file you already saved.
228
229```bash
230# Discover real field names from one sample item (Actor outputs vary —
231# use this before composing further jq queries)
232apify datasets get-items DATASET_ID --limit 1 --format json \
233 --user-agent apify-awesome-skills/apify-ecommerce 2>/dev/null \
234 | jq '.[0]'
235
236# Quick aggregation from a JSON file you already saved with the commands above
237jq '[.[] | select(.rating != null and .rating >= 4.5)] | length' YYYY-MM-DD_OUTPUT_FILE.json
238```
239
240### Step 5: Analyze Results and Deliver Answer
241
242After the run completes, deliver a direct synthesized answer — not a data dump:
243
244- **Pricing:** price range, average, top 5 cheapest with URLs
245- **Reviews:** average rating, top 3 positive and negative themes, recent snippets
246- **Bestsellers:** top 10 by rank with name, price, rating, URL
247- **Sellers:** total sellers, price range per seller, unauthorized seller flags
248- **Store-scrape:** total products, category breakdown, price range, stock summary
249- **Tech-stack:** platform detected, confidence level, notable plugins
250- **Food delivery:** restaurant count, average rating, price tier breakdown
251- **Ads intelligence:** total ads, active/inactive split, top creative formats
252
253## Error Handling
254
255- Auth error → run `apify login`, or set `APIFY_TOKEN` env var
256- `Actor not found` → check Actor ID spelling in the routing table
257- Run status `FAILED` → open the console URL (`.consoleUrl` from run metadata) for logs
258- Timeout / very long run → pass `--timeout <seconds>` to `apify actors call`
259- `No results` → broaden the keyword, switch to the Fallback Actor, then use the **Escalation** discovery command (under Step 1) if both fail
260- `proxy is required` → add `"proxy": {"useApifyProxy": true}` to the Actor input
261- `Platform not detected` → default to `apify/e-commerce-scraping-tool` with `generic` intent
262
263## Gotchas
264
265- **`--input --json` is a trap.** It returns the full ~250 KB actor object, not the schema. Use `apify actors info ID --input --user-agent apify-awesome-skills/apify-ecommerce 2>/dev/null` (no `--json`) for the clean schema; only dig into `.taggedBuilds.latest.build.inputSchema` if you specifically need it as JSON.
266- **The Primary actor has no `maxResults` field.** Its caps are mode-specific (`maxProductResults`, `maxReviewResults`, `maxSellerResults`, `maxSearchEngineResults`, `maxDeliveryResults`). Setting `maxResults` does nothing and the run scrapes unbounded.
267- **The Primary handles most intents via the right input mode** (URLs → `detailsUrls`/`listingUrls`; query → `keyword` or `searchEngineKeyword`), including competitor, search-intent, classifieds, automotive, real-estate, website-marketplace, and events. It genuinely **can't** do `tech-stack`, `seo-audit`, `store-enrichment`, `product-matching`, `ads-intelligence`, `content-discovery` (Pinterest), or `tiktok-shop` — route those straight to the Fallback.
268- **`apify actors call -i` expects valid JSON on one line.** For inputs with URL arrays or quotes, write a file and pass `-i @input.json` instead of inlining — shell quoting silently corrupts complex inputs.
269- **`datasets get-items` always streams over the network.** Save to a file once (`> file.json`), then run `jq` against the file — don't re-pipe the command into `jq` repeatedly or you re-download every time.
270- **`apify actors search --sort-by popularity` ignores relevance.** It returns the biggest-name scrapers regardless of your query (an "etsy" search surfaces Instagram/Google Maps Actors). For escalation discovery keep the default relevance sort and filter on `stats.totalUsers`/`actorReviewRating` instead.
271- **`marketplaces` values are full domain slugs**, e.g. `["www.amazon.com", "www.ebay.com"]` — not `"amazon"` or display names. Delivery mode is even narrower: `marketplacesDelivery` only accepts `["www.doordash.com", "www.instacart.com"]` (no UberEats — use the `e-commerce/ubereats-reviews-scraper` fallback for that). Always confirm accepted values from the `--input` schema's `enum` before guessing.