GitHub Issues & Pull Requests Scraper avatar

GitHub Issues & Pull Requests Scraper

Pricing

$2.00 / 1,000 issue or pr scrapeds

Go to Apify Store
GitHub Issues & Pull Requests Scraper

GitHub Issues & Pull Requests Scraper

Scrape issues and pull requests for any public GitHub repository: title, state, author, labels, comment count, timestamps, and body.

Pricing

$2.00 / 1,000 issue or pr scrapeds

Rating

0.0

(0)

Developer

Gio

Gio

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 hours ago

Last modified

Categories

Share

Scrape issues and pull requests for any public GitHub repository via the GitHub REST API — no login, no scraping HTML. Returns title, state, author, labels, comment count, timestamps, and body text.

Input

FieldTypeDescription
repositorystringowner/repo or a full github.com URL, e.g. microsoft/vscode
statestringopen, closed, or all
typestringissues, pull_requests, or both
maxItemsintegerMax results to return (max 100)

Example:

{
"repository": "microsoft/vscode",
"state": "open",
"type": "both",
"maxItems": 20
}

Output

{
"number": 12345,
"title": "Editor crashes on large files",
"url": "https://github.com/microsoft/vscode/issues/12345",
"isPullRequest": false,
"state": "open",
"user": "someuser",
"labels": ["bug", "editor-core"],
"commentsCount": 4,
"createdAt": "2026-06-01T12:00:00Z",
"updatedAt": "2026-07-01T12:00:00Z",
"closedAt": null,
"body": "Steps to reproduce..."
}

Common uses

  • Tracking open bugs/feature requests on a project you depend on
  • Monitoring pull request activity and review backlog
  • Competitive/dependency research on open-source projects
  • Feeding issue data into triage or changelog tooling

Notes

Uses the public GitHub REST API. Unauthenticated requests are rate-limited by GitHub; keep maxItems reasonable for frequent runs.