Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API referenceQuickstartGet up and running in minutes

TOOLS

Arazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationQuickstartArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Developer Tools / GitHub v3 REST API
GitHub v3 REST API logo

GitHub v3 REST API

★ Only Publicly Available OpenAPI DocumentDeveloper ToolsSource Controlbearer1099 EndpointsREST

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.

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the GitHub v3 REST API to your agent

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.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fapi.github.com%2Fgithub" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fapi.github.com%2Fgithub" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic 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.

Capabilities

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

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

Use Cases

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

Key Endpoints

1099 endpoints — jentic publishes the only available openapi specification for github v3 rest api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/repos/{owner}/{repo}

Get repository metadata

POST

/repos/{owner}/{repo}/pulls

Open a pull request

POST

/repos/{owner}/{repo}/issues

Create an issue

POST

/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches

Trigger a workflow_dispatch event

GET

/repos/{owner}/{repo}/dependabot/alerts

List Dependabot alerts

GET

/repos/{owner}/{repo}/code-scanning/alerts

List code-scanning alerts

POST

/app/installations/{installation_id}/access_tokens

Create an installation access token for a GitHub App

GET

/repos/{owner}/{repo}

Get repository metadata

POST

/repos/{owner}/{repo}/pulls

Open a pull request

POST

/repos/{owner}/{repo}/issues

Create an issue

POST

/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches

Trigger a workflow_dispatch event

GET

/repos/{owner}/{repo}/dependabot/alerts

List Dependabot alerts

GET

/repos/{owner}/{repo}/code-scanning/alerts

List code-scanning alerts

POST

/app/installations/{installation_id}/access_tokens

Create an installation access token for a GitHub App

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the GitHub v3 REST API by hand means setting up its bearer token auth, minting installation access tokens, and coding your own calls to the repos, pulls, issues, and Actions endpoints. Through Jentic you install once, import the GitHub v3 REST API from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

GitHub puts the owner and repo in the URL path (/repos/{owner}/{repo}/...), so a rule can pin your agent to one repository: it can open pull requests and issues there and nothing else. You choose the operations it may call, so dispatching workflows or minting installation access tokens are not included unless you add them.

Credential management

Credential isolation

Your GitHub token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'open a pull request' or 'list Dependabot alerts for a repo', and Jentic returns the matching GitHub operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

GitLab

→

Source control plus integrated CI/CD with a single self-hostable platform

Choose GitLab when the project is hosted on GitLab or needs the integrated CI/CD pipelines and registry in one platform; choose GitHub when the project lives on GitHub or benefits from the broader ecosystem of integrations.

Complementary

Courier

→

Notification orchestration that routes GitHub events into email, SMS, and chat channels

Use Courier alongside GitHub when an agent needs to fan out PR review requests or workflow failure alerts beyond Slack into email or SMS.

Complementary

Slack

→

Team chat for routing GitHub PR, issue, and Actions notifications to engineers

Use Slack alongside GitHub when an agent needs to post PR review requests, issue triage updates, or workflow failure alerts into engineering channels.

FAQs

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 with Jentic One, the self-hosted execution layer.

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.

Can I limit what my agent is allowed to do with the GitHub REST API?

Yes. Because you run Jentic One yourself, your own rules decide which GitHub operations and which token your agent may use. Since GitHub puts the owner and repo in the URL path (/repos/{owner}/{repo}/...), a rule can pin the agent to a single repository and let it open pull requests and issues there and nothing else. You pick the exact operations it can call, so dispatching Actions workflows or minting installation access tokens stay off limits unless you add them.

GET STARTED

Start building with GitHub v3 REST API

Explore with Jentic One
View OpenAPI Document