product-hunt-scraper

Original🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected

Scrape Product Hunt trending products using Apify. Use when you need to discover new product launches, track competitors on Product Hunt, or monitor the startup ecosystem for relevant launches.

8installs
Added on

NPX Install

npx skill4agent add gooseworks-ai/goose-skills product-hunt-scraper

Tags

Translated version includes tags in frontmatter

Product Hunt Scraper

Scrape trending products from Product Hunt using the Apify
danpoletaev/product-hunt-scraper
actor.

Quick Start

Requires
APIFY_API_TOKEN
env var (or
--token
flag). Install dependency:
pip install requests
.
bash
# Today's top products
python3 skills/product-hunt-scraper/scripts/scrape_producthunt.py \
  --time-period daily --max-products 10 --output summary

# This week's products filtered by keyword
python3 skills/product-hunt-scraper/scripts/scrape_producthunt.py \
  --time-period weekly --keywords "AI,marketing" --output summary

# Monthly top products as JSON
python3 skills/product-hunt-scraper/scripts/scrape_producthunt.py \
  --time-period monthly --max-products 50

CLI Reference

FlagDefaultDescription
--time-period
weekly
daily
,
weekly
, or
monthly
--max-products
50Max products to scrape
--keywords
noneKeywords to filter (comma-separated, OR logic)
--output
jsonOutput format:
json
or
summary
--token
env varApify token (prefer
APIFY_API_TOKEN
env var)
--timeout
300Max seconds to wait for the Apify run

Notes

  • Keyword filtering is client-side on product name + tagline + description
  • Results are sorted by upvote count (descending)