Skip to content

What GitHub will not give

Every entry here was checked against the live API. It is written down so nobody spends an afternoon finding it out again, and so that a missing panel can be told apart from a broken collector.

stats/code_frequency and stats/contributors answer 202 with an empty body, indefinitely, on a personal account. A 202 normally means “still being computed, ask again”, and for these two the next answer is another 202. They are deliberately not called.

The lines added and removed that code_frequency would have given come from the commits collector instead, per commit rather than per week, attributed to an author and dated to the commit. stats/participation and stats/punch_card do work and are used.

Ten seconds is all it takes to see it on your own account:

Terminal window
curl -s -o /dev/null -w '%{http_code}\n' \
-H "Authorization: Bearer $GITHUB_TOKEN" \
https://api.github.com/repos/OWNER/REPO/stats/code_frequency # 202, for ever
curl -s -o /dev/null -w '%{http_code}\n' \
-H "Authorization: Bearer $GITHUB_TOKEN" \
https://api.github.com/repos/OWNER/REPO/stats/participation # 200
EndpointAnswer
/settings/billing/actions410 Gone
/settings/billing/packages410 Gone
/settings/billing/shared-storage410 Gone
/user/settings/billing/usage404
/users/{login}/settings/billing/usageworks

Only the last form works for a personal account, and it returns full RFC 3339 timestamps in a field its documentation describes as a date.

Custom repository properties, classic projects, cost centres and the audit log. A personal account cannot see any of them, however the token is scoped.

  • workflows/{id}/timing returns 200 with an always-empty billable object. It looks like the source for per-workflow minutes and is not.
  • stargazers/history returns only the last thirty weeks. It does not replace the starred_at walk; this was checked on three repositories.
  • /user/installations returns 403 without a GitHub App.

GraphQL reports zero packages for an account while REST lists them. The pretty query is simply wrong here, so packages come from REST, at one call per package for its versions.

A repository with no traffic does not return an empty window. GitHub keeps returning the last fourteen days that had data, so the window can end weeks ago. The collector records what it is told.

None of the above is treated as a failure. ghapi.UnavailableError (403 or 404: the feature is switched off) and ghapi.NotReadyError (202: GitHub is still computing) both mean “there is nothing here”, and the sweep continues to the next repository. The activity feeds have their own version of this: past their ceiling GitHub answers 422 “pagination is limited for this resource”, which is read as the end of the data rather than as an error.

  • Rate limits is the other half of this: what the calls that do work cost, and why a 304 costs nothing.
  • Cost of a sweep prices every family.