GitHub Issues & PRs Scraper avatar

GitHub Issues & PRs Scraper

Pricing

Pay per usage

Go to Apify Store
GitHub Issues & PRs Scraper

GitHub Issues & PRs Scraper

Scrape GitHub issues and pull requests by repo, labels, state and date range.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Ryan Zinburg

Ryan Zinburg

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

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
}