> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plangrep.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a Review

> GET /api/open/v1/projects/:projectId/reviews/:reviewId — gets one review conversation.

Get a review and its current message count. Your API key needs the `reviews:read` scope.

## Endpoint

```http theme={null}
GET https://plangrep.com/api/open/v1/projects/{projectId}/reviews/{reviewId}
```

<ParamField path="projectId" type="string" required>
  Project that owns the review.
</ParamField>

<ParamField path="reviewId" type="string" required>
  Review identifier returned by [Create Review](/api-reference/reviews/create-review).
</ParamField>

The response wraps the review in `review`. Use `messagesUrl` to read turns and citations.

## Errors

| HTTP  | Code               |
| ----- | ------------------ |
| `404` | `review_not_found` |
