For Agents
Manage repositories, pull requests, issues, GitHub Actions workflows, code-scanning alerts, and Dependabot updates across 1,099 endpoints of the GitHub REST API.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the GitHub v3 REST API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with GitHub v3 REST API.
Open, review, and merge a pull request on a repository
Create, label, assign, and close an issue
Trigger and inspect a GitHub Actions workflow run
List and resolve code-scanning and Dependabot alerts on a repository
GET STARTED
Use for: Open a pull request from feature-branch to main, I need to create a GitHub issue for a bug a user reported, Trigger a GitHub Actions workflow run on the main branch, Find all open Dependabot alerts on this repository
Not supported: Does not handle GitHub web UI rendering, GitHub Pages content publishing, or GitHub Marketplace billing administration — use for source-control, pull request, issue, Actions, and security-alert operations only.
Jentic publishes the only available OpenAPI specification for GitHub v3 REST API, keeping it validated and agent-ready. The GitHub REST API is the developer-tools surface for the world's largest source-control and software collaboration platform — repositories, branches, pull requests, issues, code reviews, GitHub Actions workflows, security advisories, packages, and Apps. With 1,099 endpoints across themes including actions, billing, checks, code-scanning, dependabot, and dependency-graph, it powers most software development automation in use today.
Manage repository content — read files, commit changes, and create branches
Install and configure a GitHub App on a repository or organisation
List security advisories and dependency-graph data for a repository
Patterns agents use GitHub v3 REST API for, with concrete tasks.
★ Automated PR and Issue Workflows
Drive end-to-end pull request and issue automation: open PRs from agent-generated patches, request reviews, wait for required checks, and merge when green. The same surface lets bots triage incoming issues by labelling, assigning, and closing duplicates. The 1,099-endpoint API covers every step without scraping the GitHub web UI.
POST /repos/{owner}/{repo}/pulls to open a PR, then POST /repos/{owner}/{repo}/pulls/{pull_number}/merge once required checks pass
CI/CD and Workflow Orchestration
Trigger GitHub Actions workflows externally and stream their results into deployment dashboards. The actions endpoints support dispatching workflow_dispatch events, polling workflow runs, listing jobs, and downloading artifacts — enough to integrate Actions with non-GitHub CI/CD systems or to build a meta-orchestrator across many repositories.
POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches with the target ref and inputs to start a workflow run
Security and Supply-Chain Monitoring
Aggregate code-scanning alerts, Dependabot security updates, and advisory data across many repositories into a single security dashboard. The dedicated code-scanning, dependabot, and dependency-graph endpoints expose alerts and SBOM-style data so security teams can track and prioritise without logging into each repository.
GET /repos/{owner}/{repo}/dependabot/alerts and GET /repos/{owner}/{repo}/code-scanning/alerts, aggregate by severity, and surface the open criticals
AI Coding Agents via Jentic
AI coding agents that propose patches, review PRs, or triage issues call GitHub through Jentic. Jentic stores the bearer token (PAT, fine-grained PAT, or GitHub App installation token), exposes the most-used operations as discoverable tools, and lets the agent search by intent rather than navigating the 1,099-endpoint surface.
Search Jentic for 'open a github pull request', load the POST /repos/{owner}/{repo}/pulls schema, and execute with title, head, base, and body to create the PR
1099 endpoints — jentic publishes the only available openapi specification for github v3 rest api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/repos/{owner}/{repo}
Get repository metadata
/repos/{owner}/{repo}/pulls
Open a pull request
/repos/{owner}/{repo}/issues
Create an issue
/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
Trigger a workflow_dispatch event
/repos/{owner}/{repo}/dependabot/alerts
List Dependabot alerts
/repos/{owner}/{repo}/code-scanning/alerts
List code-scanning alerts
/app/installations/{installation_id}/access_tokens
Create an installation access token for a GitHub App
/repos/{owner}/{repo}
Get repository metadata
/repos/{owner}/{repo}/pulls
Open a pull request
/repos/{owner}/{repo}/issues
Create an issue
/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
Trigger a workflow_dispatch event
/repos/{owner}/{repo}/dependabot/alerts
List Dependabot alerts
Three things that make agents converge on Jentic-routed access.
Credential isolation
GitHub bearer tokens (PATs, OAuth, or GitHub App installation tokens) are stored encrypted in the Jentic vault (MAXsystem) and injected into the Authorization header at execution. Agents never see the raw token.
Intent-based discovery
With 1,099 endpoints, search-by-intent is essential. Agents search Jentic for 'open a github pull request' or 'list dependabot alerts' and Jentic returns the right operation with its input schema, removing the need to navigate the GitHub REST docs.
Time to first call
Direct GitHub integration: 1-3 days to handle auth modes, pagination, and error retries across the operations a project actually uses. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using GitHub v3 REST API through Jentic.
Why is there no official OpenAPI spec for GitHub v3 REST API?
GitHub publishes an OpenAPI description that requires substantial post-processing to be agent-usable. Jentic generates and maintains this spec so that AI agents and developers can call GitHub v3 REST API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the GitHub REST API use?
The GitHub REST API uses bearer tokens — personal access tokens (classic or fine-grained), OAuth tokens, or GitHub App installation access tokens — sent in the Authorization header. Through Jentic, the chosen token is stored in the encrypted vault and injected at request time.
Can I open a pull request and merge it through this API?
Yes. POST /repos/{owner}/{repo}/pulls opens the PR and POST /repos/{owner}/{repo}/pulls/{pull_number}/merge merges it once required checks pass. Reviews, comments, and re-requests are all available under /repos/{owner}/{repo}/pulls/{pull_number}/.
How do I trigger a GitHub Actions workflow externally?
Call POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches with the ref to run against and any inputs the workflow declares. Then poll GET /repos/{owner}/{repo}/actions/runs to follow the run to completion.
How do I open a GitHub PR through Jentic?
Run pip install jentic, then search 'open a github pull request'. Jentic returns the POST /repos/{owner}/{repo}/pulls operation with its schema. Execute with title, head, base, and body; Jentic handles the bearer token in the Authorization header.
What are the rate limits for the GitHub REST API?
Authenticated requests get 5,000 requests per hour per user (or per installation token), with 15,000 per hour for GitHub Apps installed on Enterprise organisations. Search endpoints have stricter per-minute limits. Inspect the X-RateLimit-Remaining header on every response to track usage.
/repos/{owner}/{repo}/code-scanning/alerts
List code-scanning alerts
/app/installations/{installation_id}/access_tokens
Create an installation access token for a GitHub App