---
title: "List opportunities"
method: GET
path: "/api/mcp/projects/{projectId}/opportunities"
tags: ["Opportunities"]
---

# List opportunities

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

Actionable opportunities Searchable surfaced for the project — prioritized fix/write/audit suggestions derived from visibility, sentiment, sources, traffic, prompts, site health, and articles. Read-only. Defaults to active opportunities (pass status or includeResolved=true to widen, source/impact to narrow); returns them in the product's priority order plus global stats. Regular-project feature — pitch projects are rejected (403 pitch_not_supported).

## Path parameters

- `projectId` string, uuid, required

## Query parameters

- `status` 'active' | 'completed' | 'dismissed' | 'auto_resolved'
- `includeResolved` 'true' | 'false'
- `source` string
- `impact` 'critical' | 'high' | 'medium' | 'low'
- `limit` integer
- `offset` integer

## Response `200`

Opportunities.

- OpportunitiesResponse
  - `project` ProjectRef, required
    - `id` string, uuid, required
    - `name` string, required
    - `domain` string, nullable, required
  - `summary` object, required
    - `total` integer
    - `bySource` object
    - `byImpact` object
      - `critical` integer
      - `high` integer
      - `medium` integer
      - `low` integer
  - `pagination` object, required
    - `limit` integer
    - `offset` integer
    - `returnedCount` integer
    - `totalCount` integer
  - `opportunities` OpportunityItem[], required
    - `id` string, uuid
    - `title` string
    - `description` string, nullable
    - `source` string
    - `category` string
    - `scope` string, nullable
    - `impact` 'critical' | 'high' | 'medium' | 'low'
    - `actionType` string, nullable
    - `status` 'active' | 'completed' | 'dismissed' | 'auto_resolved'
    - `completedAt` string, date-time, nullable
    - `dismissedAt` string, date-time, nullable
    - `dismissedReason` string, nullable
    - `autoResolvedAt` string, date-time, nullable
    - `createdAt` string, date-time
    - `updatedAt` string, date-time

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

---

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