Trends Aggregator avatar

Trends Aggregator

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Trends Aggregator

Trends Aggregator

Aggregate trending topics from Google Trends, Hacker News, Reddit, GitHub, and Product Hunt. No API keys required.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Tatsuya Mizuno

Tatsuya Mizuno

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

1

Monthly active users

9 days ago

Last modified

Categories

Share

Aggregate trending topics from multiple sources in a single Apify Actor run. No API keys required.

Sources

SourceDescription
googleGoogle Trends daily trending searches (with related news articles)
hackernewsTop stories from Hacker News
redditTrending posts from r/popular
githubFastest-growing GitHub repositories created in the last 7 days
producthuntToday's top products on Product Hunt

Input

FieldTypeDefaultDescription
sourcesarrayall 5 sourcesWhich sources to fetch: google, hackernews, reddit, github, producthunt
googleGeostring"US"ISO country code for Google Trends region (e.g. US, JP, GB)
limitinteger25Max items per source (1–50)

Example input

{
"sources": ["google", "hackernews", "github"],
"googleGeo": "JP",
"limit": 10
}

Output

Each source produces one dataset record with the structure:

{
"source": "hackernews",
"updated": "2026-03-16T10:00:00.000Z",
"count": 25,
"items": [ ... ]
}

If a source fails, the record will include an "error" field instead of items.

Google item shape

{
"title": "Topic name",
"traffic": "500K+",
"pubDate": "Mon, 16 Mar 2026 ...",
"link": "https://trends.google.com/...",
"relatedArticles": [
{ "title": "...", "url": "...", "source": "..." }
]
}

Hacker News item shape

{
"id": 12345678,
"title": "Show HN: Something cool",
"url": "https://example.com",
"score": 342,
"by": "username",
"comments": 87,
"time": 1710000000
}

Reddit item shape

{
"title": "Post title",
"subreddit": "r/technology",
"score": 12000,
"comments": 450,
"url": "https://www.reddit.com/r/technology/comments/...",
"author": "username",
"created_utc": 1710000000
}

GitHub item shape

{
"name": "owner/repo",
"description": "Repo description",
"url": "https://github.com/owner/repo",
"stars": 1200,
"forks": 80,
"language": "TypeScript",
"created_at": "2026-03-10T00:00:00Z"
}

Product Hunt item shape

{
"name": "Product Name",
"tagline": "Short description",
"votes": 540,
"url": "https://www.producthunt.com/posts/...",
"website": "https://product.com",
"topics": ["AI", "Productivity"]
}

Notes

  • Product Hunt GraphQL may require authentication; if unavailable the record will have count: 0 and a note field.
  • This Actor is a port of the ../../19-trends-api/ Cloudflare Worker, adapted for the Apify platform.