GitHub Trending Scraper avatar

GitHub Trending Scraper

Pricing

Pay per event

Go to Apify Store
GitHub Trending Scraper

GitHub Trending Scraper

Scrapes GitHub Trending repositories by language, time period (daily/weekly/monthly), and spoken language.

Pricing

Pay per event

Rating

0.0

(0)

Developer

Max Miller

Max Miller

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 hours ago

Last modified

Categories

Share

Scrapes GitHub Trending and returns structured data on the most popular repositories right now.

Features

  • Filter by programming language (Python, JavaScript, Rust, Go, etc.)
  • Filter by time period: today, this week, or this month
  • Filter by spoken language (ISO 639-1 code)
  • Returns rank, stars, forks, description, contributors, and trending velocity
  • Up to 100 results per run

Input

FieldTypeDefaultDescription
languagestring""Programming language filter (e.g. "python", "javascript")
sincestring"daily"Time period: "daily", "weekly", or "monthly"
spokenLanguagestring""ISO 639-1 spoken language code (e.g. "en", "zh")
maxItemsinteger25Max repositories to return (1–100)

Example Input

{
"language": "python",
"since": "weekly",
"maxItems": 50
}

Example Output

{
"rank": 1,
"owner": "openai",
"name": "whisper",
"fullName": "openai/whisper",
"url": "https://github.com/openai/whisper",
"description": "Robust Speech Recognition via Large-Scale Weak Supervision",
"language": "Python",
"stars": 68432,
"forks": 7891,
"starsGained": 342,
"starsGainedPeriod": "weekly",
"contributors": [
{ "username": "openai", "avatarUrl": "https://avatars.githubusercontent.com/..." }
],
"scrapedAt": "2026-08-14T20:00:00.000Z"
}

Use Cases

  • Monitor trending repos in your tech stack
  • Track what's gaining momentum in a language ecosystem
  • Build developer-facing tools, newsletters, or dashboards
  • Data source for "what's hot in open source" feeds

Notes

Uses GitHub's public trending page (no API key required). Runs fast — typically under 10 seconds.