GET /reviews/{review_id}
Return one review with findings and outcome.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/reviews/{review_id} |
Includes its scope, the per-stage sessions, the parsed findings, the finding counters, and the posting outcome. Findings only exist after a stage session finalizes — a running review honestly reports [] / null, which is why a client streams a stage session and then re-fetches the review.
Path parameters
review_idstringrequired
curl "https://api.ellipsis.dev/v1/reviews/{review_id}" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.reviews.get("...")
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.reviews.get('...');
console.log(result);Request
Response
Example response · 200
{
"budget_millicents": 0,
"completed_at": "string",
"cost_millicents": 0,
"created_at": "string",
"description_error": "string",
"description_outcome": "string",
"findings": [],
"id": "string",
"post": true,
"post_error": "string",
"posted_review_id": 0,
"review_body": "string",
"reviewed_commits": [],
"skip_reason": "string",
"stages": [],
"status": "string",
"trigger": "string"
}