Better Fetch
Social networks10 runnable operations

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

Available

User 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

Available

User 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

Available

User 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

Available

User 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

Available

Followers 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

Available

Following 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

Available

Contributions 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

Available

Repository 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