---
title: "List shared reports"
method: GET
path: "/api/mcp/projects/{projectId}/reports"
tags: ["Reports"]
---

# List shared reports

`GET /api/mcp/projects/{projectId}/reports`

List previously shared reports for the project, newest first — { reports: [{id, reportType, title, status, shareUrl, createdAt}], pagination }. Only currently-live, published reports are listed (a report saved as a draft, or later unshared, won't appear). Paginated with limit/offset. `limit` defaults to 20, max 100.

## Path parameters

- `projectId` string, uuid, required

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Shared reports.

- ReportListResponse
  - `reports` ReportListItem[], required
    - `id` string, uuid
    - `reportType` 'sentiment' | 'visibility' | 'combined'
    - `title` string, nullable
    - `status` 'published' | 'draft'
    - `shareUrl` string, uri
    - `createdAt` string, date-time
  - `pagination` OffsetPagination, required — Standard offset-pagination block.
    - `limit` integer, required
    - `offset` integer, required
    - `returnedCount` integer, required
    - `totalCount` integer
    - `hasMore` boolean, required
    - `nextOffset` integer, nullable

## Other responses

- `401` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.
- `403` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.
- `404` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.
- `429` — Rate limited. Usually the per-API-key REST limit (600 requests/minute); on Google-backed endpoints it can also relay an upstream Google rate limit. `Retry-After` (seconds) is present when the limit was applied by Searchable's own rate limiter; it may be absent when an upstream provider rate-limits.

---

[API](https://skmtc.net/searchable/apis/searchable-rest-api.md) · [All operations](https://skmtc.net/searchable/apis/searchable-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/searchable/searchable-rest-api/revisions/301b04e800ed/schema)
