Get Review Details
Reviews
Get Review Details
Retrieve detailed information about a specific PR review
GET
Get Review Details
Overview
Fetch complete details for a single PR review by its event ID, including the full AI-generated summary and all analyzed files.Authentication
Requires a valid JWT token in theAuthorization header:
Path Parameters
integer
required
The unique event ID of the review
Response
Returns a single review object with full details.integer
Event ID
string
Type of event (e.g., “pull_request”)
string
Event source (e.g., “github”)
string
Processing status:
pending, processing, completed, or failedstring
Current PR status:
open, merged, or closeddatetime
Timestamp when the event was created
datetime
Timestamp when the event was processed (null if pending)
string
Pull request title
integer
Pull request number
string
Repository full name (owner/repo)
string
Source branch name
string
GitHub username of the PR author
string
Direct URL to the pull request on GitHub
string
Complete AI-generated review summary including verdict, confidence score, and detailed findings
integer
Total number of files analyzed by the AI reviewer
Example Request
Example Response
Error Responses
Review Not Found
404 Not Found
Unauthorized
401 Unauthorized
AI Summary Format
Theai_summary field contains a structured review with the following elements:
- Verdict: One of
APPROVE,REQUEST_CHANGES, orNEEDS_DISCUSSION - Confidence Score: Rated from 1/5 to 5/5
- Categorized Issues: Grouped by severity with emoji indicators:
- 🔴 Critical: Security vulnerabilities, breaking changes, data loss risks
- 🟡 Moderate: Performance issues, code quality concerns, missing tests
- 🟢 Minor: Style suggestions, documentation improvements, refactoring opportunities
- Detailed Analysis: Context-aware insights based on the codebase and PR changes
- Recommendation: Final verdict on whether the PR should be merged