DEV Community

Cover image for GitHub API Without a Token — What You Can Access for Free
Alex Spinov
Alex Spinov

Posted on • Edited on

GitHub API Without a Token — What You Can Access for Free

GitHub's REST API gives you 60 requests/hour without any token. Here's what you can access.

User Profiles

https://api.github.com/users/torvalds
Enter fullscreen mode Exit fullscreen mode

Returns: name, bio, company, followers (291K!), repos, created_at.

User Repos (sorted by stars)

https://api.github.com/users/torvalds/repos?sort=stars&per_page=30
Enter fullscreen mode Exit fullscreen mode

Returns: name, description, stars, forks, language, topics, license.

Repo Issues

https://api.github.com/repos/facebook/react/issues?state=open&per_page=30
Enter fullscreen mode Exit fullscreen mode

Returns: title, labels, assignees, comments, reactions, created_at.

Search Repos

https://api.github.com/search/repositories?q=web+scraping&sort=stars
Enter fullscreen mode Exit fullscreen mode

Rate Limits

  • Without token: 60 req/hour
  • With free token: 5000 req/hour
  • Check: X-RateLimit-Remaining header

I built GitHub Profile and Issues scrapers on Apify — search knotless_cadence github.\n\n---\n\n*More tools:* 60+ free scrapers | Reports | MCP Servers


Need data scraped or market research done? I offer web scraping ($20), market research reports ($20), and custom automation ($50+). 77 production scrapers. Hire me → or email Spinov001@gmail.com

Order custom data via Payoneer ($20)


More from me: 10 Dev Tools I Use Daily | 77 Scrapers on a Schedule | 150+ Free APIs
Also: Neon Free Postgres | Vercel Free API | Hetzner 4x More Server


Need data from the web without writing scrapers? Check my *Apify actors** — ready-made scrapers for HN, Reddit, LinkedIn, and 75+ more sites. Or email me: spinov001@gmail.com*

Top comments (0)