GitHub Issues & PRs Scraper - Bulk Data avatar

GitHub Issues & PRs Scraper - Bulk Data

Pricing

from $1.00 / 1,000 result items

Go to Apify Store
GitHub Issues & PRs Scraper - Bulk Data

GitHub Issues & PRs Scraper - Bulk Data

Scrape GitHub issues and pull requests at scale. Extract titles, labels, assignees, comments, and status for open source research, project tracking, and developer analytics.

Pricing

from $1.00 / 1,000 result items

Rating

0.0

(0)

Developer

Ryan Zinburg

Ryan Zinburg

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

15 minutes ago

Last modified

Categories

Share

GitHub Issues & PRs Scraper

Scrapes issues and pull requests from public GitHub repositories via the GitHub REST API.

Input

  • repository (string): Repository in owner/repo format, for example openai/openai-python.
  • includePulls (boolean): Include pull requests.
  • includeIssues (boolean): Include regular issues.
  • state (enum): open, closed, or all.
  • maxItems (integer): Maximum number of results, default 100.

GITHUB_TOKEN is optional. Set it as an Actor environment variable or secret to increase GitHub API rate limits.

Output

Each dataset item contains:

  • type: issue or pull-request
  • number
  • title
  • author
  • state
  • labels
  • createdAt
  • closedAt
  • commentsCount
  • url

Example input

{
"repository": "openai/openai-python",
"includePulls": true,
"includeIssues": true,
"state": "open",
"maxItems": 100
}