Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/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.
APIs / Developer Tools / Amazonaws / Amazon CodeGuru Reviewer
Amazon CodeGuru Reviewer logo

AWS Amazon CodeGuru Reviewer

Browse all Amazonaws APIs
★ Only Publicly Available OpenAPI DocumentDeveloper ToolsTesting Qahmac14 EndpointsREST

For Agents

Associate repositories with Amazon CodeGuru Reviewer, trigger code reviews, list machine-generated recommendations, and capture feedback. Backed by 14 endpoints covering repository associations, code reviews, and recommendation feedback.

Use for: I need to associate a GitHub repository with CodeGuru Reviewer, Trigger a CodeGuru code review on a specific branch, List all open recommendations for the latest code review, Submit thumbs-up feedback on a CodeGuru recommendation

Not supported: Does not handle runtime profiling (use CodeGuru Profiler), source-code hosting, or pipeline orchestration — use for repository associations and automated code review recommendations only.

Jentic publishes the only available OpenAPI specification for Amazon CodeGuru Reviewer, keeping it validated and agent-ready. CodeGuru Reviewer runs automated code reviews against repositories hosted in CodeCommit, GitHub, GitHub Enterprise, Bitbucket, and S3. The API associates repositories with the service, triggers full or PR-scoped code reviews, lists recommendations, and captures developer feedback to improve future suggestions.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Amazon CodeGuru Reviewer to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Amazon CodeGuru Reviewer, 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 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 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 Amazon CodeGuru Reviewer API.

Associate repositories from CodeCommit, GitHub, Bitbucket, or S3 with CodeGuru Reviewer

Trigger code reviews for full repositories or specific pull request branches

List recommendations with severity, file location, and suggested remediation text

Capture thumbs-up or thumbs-down developer feedback on individual recommendations

Tag repository associations and code review resources for ownership

Disassociate repositories when the service is no longer needed

Use Cases

Patterns agents use Amazon CodeGuru Reviewer API for, with concrete tasks.

★ Automated Pre-Merge Code Review

When a pull request is opened, CodeGuru Reviewer runs an automated review that surfaces concurrency issues, AWS best-practice violations, resource leaks, and security smells. Engineering teams call CreateCodeReview with a RepositoryAnalysis or PullRequest type, then poll DescribeCodeReview until State is Completed before fetching results with ListRecommendations. This adds an automated reviewer alongside human reviewers without operating any analysis infrastructure.

Trigger a code review of type RepositoryAnalysis on association arn:aws:codeguru-reviewer:..:assoc/abc and the main branch, then list the resulting recommendations

Recommendation Feedback Loop

Developers signal whether each CodeGuru recommendation was useful through PutRecommendationFeedback. The feedback (Reactions: ThumbsUp or ThumbsDown) tunes future reviews and is visible across the team. ListRecommendationFeedback exposes aggregate sentiment per recommendation, so an agent can detect patterns where the model consistently produces low-quality output and surface them for review.

Submit ThumbsUp feedback on recommendation ID rec-abc inside code review arn:aws:codeguru-reviewer:..:review/xyz

Repository Onboarding for Continuous Review

Platform teams onboarding a new repository call AssociateRepository with the source provider details (CodeCommit name, or GitHub/Bitbucket connection ARN). DescribeRepositoryAssociation polls until State is Associated, after which every PR opened on the repository can have a CodeGuru review triggered automatically. ListRepositoryAssociations gives a fleet-wide view of which repos are covered.

Associate a CodeCommit repository named payments-service with CodeGuru Reviewer and wait for the association State to reach Associated

AI Agent Integration via Jentic

Through Jentic, an AI agent uses CodeGuru Reviewer by searching for an intent like 'run a CodeGuru code review', loading the CreateCodeReview schema, and executing it with a repository association ARN and branch name. Jentic signs the SigV4 request server-side using IAM credentials in the MAXsystem vault.

Search Jentic for 'run a CodeGuru code review', load the CreateCodeReview schema, and execute it for the supplied association ARN and a feature branch

Key Endpoints

14 endpoints — jentic publishes the only available openapi specification for amazon codeguru reviewer, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/associations

Associate a repository with CodeGuru Reviewer

GET

/associations

List repository associations

GET

/associations/{AssociationArn}

Describe a repository association

POST

/codereviews

Trigger a code review

GET

/codereviews/{CodeReviewArn}

Describe a code review

GET

/codereviews/{CodeReviewArn}/Recommendations

List recommendations from a code review

PUT

/feedback

Submit feedback on a recommendation

POST

/associations

Associate a repository with CodeGuru Reviewer

GET

/associations

List repository associations

GET

/associations/{AssociationArn}

Describe a repository association

POST

/codereviews

Trigger a code review

GET

/codereviews/{CodeReviewArn}

Describe a code review

GET

/codereviews/{CodeReviewArn}/Recommendations

List recommendations from a code review

PUT

/feedback

Submit feedback on a recommendation

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

AWS access key ID and secret are stored encrypted in the Jentic MAXsystem vault. Jentic computes the SigV4 signature server-side for every CodeGuru Reviewer call, so raw IAM credentials never enter the agent's context.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g. 'run a CodeGuru code review' or 'list recommendations from a code review') and Jentic returns the matching CodeGuru Reviewer operation with its input schema, so the agent calls CreateCodeReview or ListRecommendations directly.

Time to first call

Time to first call

Direct AWS SDK integration: 1-2 days for SigV4, IAM, association onboarding, and review polling. Through Jentic: under 1 hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

AWS CodeCommit

→

CodeCommit hosts repositories that CodeGuru Reviewer associates with for automated reviews

Pair CodeCommit with CodeGuru Reviewer when both source hosting and code review run inside AWS.

Complementary

GitHub

GitHub repositories can be associated with CodeGuru Reviewer for cross-platform code review

Use the GitHub API to manage PRs while CodeGuru Reviewer adds automated review comments.

Complementary

AWS CodePipeline

→

CodePipeline can gate stages on CodeGuru-derived quality signals

Use CodePipeline when the agent needs to block deployments based on review results.

FAQs

Specific to using Amazon CodeGuru Reviewer API through Jentic.

Why is there no official OpenAPI spec for Amazon CodeGuru Reviewer?

AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Amazon CodeGuru Reviewer 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 Amazon CodeGuru Reviewer API use?

CodeGuru Reviewer uses AWS Signature Version 4 (HMAC) signed requests with an IAM access key and secret. Through Jentic, those credentials live encrypted in the MAXsystem vault and the SigV4 signature is computed server-side, so the agent context never holds the raw secret.

Can I trigger a code review on a specific pull request through the API?

Yes. CreateCodeReview accepts a Type with a RepositoryAnalysis sub-object that takes a RepositoryHead containing a BranchName. Once created, poll DescribeCodeReview until State equals Completed, then call ListRecommendations on the CodeReviewArn to fetch results.

How do I submit feedback on a CodeGuru recommendation?

Call PutRecommendationFeedback with the CodeReviewArn, RecommendationId, and a Reactions array containing ThumbsUp or ThumbsDown. ListRecommendationFeedback returns aggregate feedback so an agent can review sentiment across recommendations.

What are the rate limits for the Amazon CodeGuru Reviewer API?

AWS enforces per-account, per-region throttling on CodeGuru Reviewer; throttled requests return ThrottlingException. Code review creation is also rate-limited per repository. Use exponential backoff via the AWS SDKs that Jentic wraps.

How do I run a CodeGuru review through Jentic with an AI agent?

Run pip install jentic, then have the agent search for 'run a CodeGuru code review', load the CreateCodeReview schema, and execute it with the AssociationArn and branch. Poll DescribeCodeReview for completion, then ListRecommendations to fetch findings the agent can post back as PR comments.

GET STARTED

Start building with Amazon CodeGuru Reviewer API

Explore with Jentic
View OpenAPI Document