GitHub reference
Developers, repositories, pull requests, activity, social graphs, contributions, and trending data from public GitHub.
Each operation below runs through the tool endpoint shown, and is available through REST, MCP, and the Better Fetch workspace.
User profile
AvailableUser profile from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"profile","username_or_url":"openai"}}'Tool: github_scraper
User repositories
AvailableUser repositories from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"repositories","username_or_url":"sindresorhus","max_results":10}}'Tool: github_scraper
User pull requests
AvailableUser pull requests from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"pull_requests","username_or_url":"sindresorhus","max_results":10}}'Tool: github_scraper
User activity
AvailableUser activity from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"activity","username_or_url":"sindresorhus","max_results":10}}'Tool: github_scraper
Followers
AvailableFollowers from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"followers","username_or_url":"sindresorhus","max_results":10}}'Tool: github_scraper
Following
AvailableFollowing from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"following","username_or_url":"sindresorhus","max_results":10}}'Tool: github_scraper
Contributions
AvailableContributions from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"contributions","username_or_url":"sindresorhus"}}'Tool: github_scraper
Repository details
AvailableRepository details from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"repo","repo_or_url":"facebook/react"}}'Tool: github_scraper
Trending repositories
AvailableTrending repositories from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_trending_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"since":"daily","limit":10}}'Tool: github_trending_scraper
Trending developers
AvailableTrending developers from public GitHub surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/github_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"trending_developers","since":"daily","max_results":10}}'Tool: github_scraper