Back to templates
Contentextract
4.7
1.6k uses
Product Hunt Daily
Extract daily product launches from Product Hunt with product name, tagline, upvotes, and maker info
Target URL
https://www.producthunt.com/Visit SiteSteps
1
Go to Product Hunt homepage
navigate
2
Wait for product cards to load
wait
3
Extract daily products
extract
| Field | Selector | Transform |
|---|---|---|
| name | [data-test='product-item-name'] | text |
| tagline | [data-test='product-item-tagline'] | text |
| upvotes | [data-test='vote-button'] span | text |
| maker | [data-test='product-item-meta'] a | text |
| url | [data-test='product-item-name'] | url |
| category | [data-test='product-item-category'] | text |
Output Schema
| Field | Type |
|---|---|
| name | string |
| tagline | string |
| upvotes | string |
| maker | string |
| url | string |
| category | string |
Example Output
| name | tagline | upvotes | maker | url | category |
|---|---|---|---|---|---|
| ScrapeFlow | Visual web scraping for everyone | 847 | @scraperbot | /posts/scrapeflow | Developer Tools |
| AIMailer | AI-powered cold email campaigns | 623 | @emailwhiz | /posts/aimailer | Marketing |
| PixelPerfect | Design-to-code in one click | 1,204 | @pixeldev | /posts/pixelperfect | Design Tools |
API Endpoint
curl -X POST https://api.scraper.bot/v1/flows \
-H "Authorization: Bearer scr_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"templateId": "tmpl-producthunt-daily",
"url": "https://www.producthunt.com/"
}'