---
title: "Get per-prompt visibility"
method: GET
path: "/api/mcp/projects/{projectId}/visibility/prompts"
tags: ["Visibility"]
---

# Get per-prompt visibility

`GET /api/mcp/projects/{projectId}/visibility/prompts`

Per-prompt visibility breakdown. Paginated — the response `pagination` block returns `hasMore` + `nextOffset`; pass `offset` to page through all prompts. `days` defaults to 30, max 180. `limit` defaults to 500, max 5000.

## Path parameters

- `projectId` string, uuid, required

## Query parameters

- `days` integer
- `unbranded` 'true'
- `branded` 'true'
- `topicId` string, uuid
- `platform` string
- `limit` integer
- `offset` integer

## Response `200`

Per-prompt visibility.

- VisibilityPromptsResponse
  - `project` ProjectRefWithBrand, required
    - `id` string, uuid, required
    - `name` string, required
    - `domain` string, nullable, required
    - `brandName` string
  - `summary` object, required
    - `totalPrompts` integer
    - `brandedCount` integer
    - `nonBrandedCount` integer
    - `promptsWithMentions` integer
    - `overallMentionRate` number
  - `prompts` VisibilityPromptItem[], required
    - `id` string, uuid
    - `text` string
    - `isBranded` boolean
    - `intentCategory` string, nullable
    - `topics` object[]
      - `id` string
      - `name` string
    - `metrics` object
      - `totalResponses` integer
      - `brandMentions` integer
      - `mentionRate` number
      - `avgPosition` number, nullable
      - `totalCitations` integer
      - `brandCitations` integer
    - `platformBreakdown` object[]
      - `platform` string
      - `mentioned` boolean
      - `position` number, nullable
  - `pagination` OffsetPagination, required — Standard offset-pagination block.
    - `limit` integer, required
    - `offset` integer, required
    - `returnedCount` integer, required
    - `totalCount` integer
    - `hasMore` boolean, required
    - `nextOffset` integer, nullable
  - `dateRange` DateRange, required — The resolved lookback window for this response.
    - `from` string, date-time, required
    - `to` string, date-time, required

## Other responses

- `400` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.
- `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.
- `504` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.

---

[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)
