Company and financial data

GitHub Repo Details: stars, forks, license, topics, bulk

Details of any public GitHub repository, up to 500 per run: stars, forks, watchers, open issues, primary language, license, topics, default branch, size, homepage, created and last push dates, and the archived and fork flags, from GitHub's own API. No profiles, no emails. Pay per repository.

$0.40per 1,000 · Repository detailed

One repository delivered with its counts and metadata. Unknown repositories and rate-limited requests are never charged.

run it
ACTOR=steadydata~github-repo-details
URL="https://api.apify.com/v2/acts/$ACTOR/run-sync-get-dataset-items"

curl -X POST "$URL?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"repos": ["python/cpython", "https://github.com/apify/crawlee-python"]}'

# rows come straight back as JSON, one object per delivered row

Input

FieldNameWhat it does
repos
required
RepositoriesOne per row, up to 500: 'owner/name' or a GitHub URL (https://github.com/python/cpython).
githubTokenGitHub token (optional)Your own GitHub token lifts the limit from 60 to 5,000 requests per hour. Leave empty for small lists. The token is only used for these requests.

What you get back

output schema, one object per delivered row
{
  "fullName": string | null,
  "owner": string | null,
  "name": string | null,
  "url": string | null,
  "description": string | null,
  "stars": integer | null,
  "forks": integer | null,
  "watchers": integer | null,
  "openIssues": integer | null,
  "language": string | null,
  "license": string | null,
  "topics": array | null,
  "defaultBranch": string | null,
  "sizeKb": integer | null,
  "homepage": string | null,
  "createdAt": string | null,
  "pushedAt": string | null,
  "updatedAt": string | null,
  "isArchived": boolean | null,
  "isFork": boolean | null,
  "isTemplate": boolean | null,
  "hasIssues": boolean | null,
  "hasWiki": boolean | null,
  "status": string | null,
  "input": string | null,
  "errorCode": string | null,
  "error": string | null
}
FieldType
fullNamestring, null
ownerstring, null
namestring, null
urlstring, null
descriptionstring, null
starsinteger, null
forksinteger, null
watchersinteger, null
openIssuesinteger, null
languagestring, null
licensestring, null
topicsarray, null
defaultBranchstring, null
sizeKbinteger, null
homepagestring, null
createdAtstring, null
pushedAtstring, null
updatedAtstring, null
isArchivedboolean, null
isForkboolean, null
isTemplateboolean, null
hasIssuesboolean, null
hasWikiboolean, null
statusstring, null
inputstring, null
errorCodestring, null
errorstring, null

Related datasets