All plugins
GitHub REST API
GitHub REST API for account, repo, and search workflows
APICategory: devPopularity 87
github_restGitHub REST API for account, repo, and search workflows
Open in dashboard →
See the live tool list, OAuth status, and recent calls.
Install command
Run the install command shown below to add this plugin to your workspace.
Install
hrbr plugins install github-rest-apiHarbor calls https://api.github.com (driven by the upstream OpenAPI spec).
Quick start
hrbr exec 'return await github_rest.get({ /* see schema */ })'Or from a Function:
import { defineOrbitJob } from "@hrbr/orbit";
export default defineOrbitJob({
name: "github-rest-api-example",
handler: async (ctx) => {
return await ctx.plugins.github_rest.list({ limit: 5 });
},
});Tools
Tools are generated from the upstream OpenAPI spec. Inspect with:
hrbr plugins tools github-rest-apiOr open the dashboard plugin page for the live tool list.