Better Fetch

GitHub Issues Scraper

Fetch public GitHub issues with state, labels, authors, comment counts, timestamps, URLs, and bounded issue text.

Workspace

Configure

Inputs stay here while results become exportable artifacts.

Start from an example

Maximum issues to return.

Issue state.

GitHub owner/repository or repository URL.

Sign in and run
~1 credit/run10 runs/minute

Results

Preview, inspect, copy, or export the complete output.

Your result will become an artifact

Run the tool to inspect structured rows, raw JSON, execution details, and downloadable JSON, CSV, and Markdown files.

countissuessource_url

Overview

Fetch public GitHub issues with state, labels, authors, comment counts, timestamps, URLs, and bounded issue text. This first-party Better Fetch tool turns a focused request into predictable structured output that can be inspected in the web workspace, exported as JSON or CSV, called through REST, or composed by an AI agent over MCP. It is designed for repeatable production research rather than fragile copy-and-paste scraping.

Last validated: Jul 13, 2026

Input

limitintegerdefault: 10

Maximum issues to return.

state"open" | "closed" | "all"default: "open"

Issue state.

repositorystringrequired

GitHub owner/repository or repository URL.

Output

countintegerrequired

Number of records returned

issuesobject[]required

Normalized issues records

source_urlstringrequired

Fetched source URL

Examples

first-run

{
  "limit": 3,
  "state": "open",
  "repository": "microsoft/vscode"
}

Use cases

Agent research

Give AI agents bounded, normalized github issues scraper results without writing source-specific retrieval and parsing code.

Repeatable monitoring

Save the configuration, rerun it on a consistent source, and export comparable structured artifacts for operational review.

FAQ

What does GitHub Issues Scraper return?

It returns normalized structured fields documented in the output schema, plus the fetched source URL and a record count for receipts and exports.

Does this tool store the retrieved output?

No. Better Fetch records privacy-safe run metadata for reliability and retention analysis, but the output payload itself is not stored by the workspace.

Use it anywhere

MCP (Claude, ChatGPT, Codex)

# After connecting https://betterfetch.co/api/mcp, ask your AI to:
1. Call search_tools for "GitHub Issues Scraper"
2. Call run_tool with:
   name: "github_issues_scraper"
   input: {"limit":3,"state":"open","repository":"microsoft/vscode"}

REST

curl -sS -X POST "https://betterfetch.co/api/tools/github_issues_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input": {"limit":3,"state":"open","repository":"microsoft/vscode"}}'

Run locally

git clone https://github.com/better-fetch/tools/tree/main/tools/github-issues-scraper && cd github-issues-scraper && npm i
BETTER_FETCH_API_KEY=bf_your_key_here npx bf-tool run --input '{"limit":3,"state":"open","repository":"microsoft/vscode"}'