#github-api #rate-limiting #checker #token #jq #user #pat

app gh-rate-checker

Simple Github rate-limit checker

2 unstable releases

0.2.0 Oct 14, 2023
0.1.0 Oct 14, 2023

#1222 in Command line utilities

38 downloads per month

MIT license

12KB
121 lines

Github rate-limit checker

Simple cli util to check the rate-limit against a PAT and output as a table.

GH_RATE_LIMIT_TOKEN=some-token gh-rate-checker

# or

gh-rate-checker some-token

Instead of curling and jq magic:

// curl -i -H "Authorization: token <some-token>" https://api.github.com/rate_limit | jq -r '...'

{
  "resources": {
    "core": {
      "limit": 5000,
      "used": 0,
      "remaining": 5000,
      "reset": 1697283778
    },
    "search": {
      "limit": 30,
      "used": 0,
      "remaining": 30,
      "reset": 1697280238
    }
    // ....
  }
}

We get a colorized table output (no colors in md snippets 🤷).

Resource                    | Limit | Used | Remaining | Reset
core                        | 5000  | 0    | 5000      | 2023-10-14 11:59:06
search                      | 30    | 0    | 30        | 2023-10-14 11:00:06
graphql                     | 5000  | 99   | 4901      | 2023-10-14 11:01:01
integration_manifest        | 5000  | 0    | 5000      | 2023-10-14 11:59:06
source_import               | 100   | 0    | 100       | 2023-10-14 11:00:06
code_scanning_upload        | 1000  | 0    | 1000      | 2023-10-14 11:59:06
actions_runner_registration | 10000 | 0    | 10000     | 2023-10-14 11:59:06
scim                        | 15000 | 0    | 15000     | 2023-10-14 11:59:06
dependency_snapshots        | 100   | 0    | 100       | 2023-10-14 11:00:06
audit_log                   | 1750  | 0    | 1750      | 2023-10-14 11:59:06
code_search                 | 10    | 0    | 10        | 2023-10-14 11:00:06
Overall                     | 5000  | 0    | 5000      | 2023-10-14 11:59:06

Dependencies

~6–22MB
~294K SLoC