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

# List Project Reviews

> GET /api/open/v1/projects/:projectId/reviews — lists review conversations in a project.

List named review conversations for a ready project. Your API key needs the `reviews:read` scope.

## Endpoint

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

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

<ParamField query="limit" type="integer">
  Maximum reviews to return, from 1 to 100.
</ParamField>

<ParamField query="cursor" type="string">
  Cursor returned by a previous list response.
</ParamField>

```bash theme={null}
curl https://plangrep.com/api/open/v1/projects/proj_abc/reviews \
  -H "Authorization: Bearer YOUR_API_KEY"
```

The response contains `reviews` and `pageInfo`. Every review contains only bearer-authenticated `/api/open/v1/...` URLs; it never contains runtime session URLs, cookies, capability tokens, stream endpoints, orchestrator paths, or internal container job IDs.
