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

# List competitors

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

The project's real/tracked competitors (rows in the competitors table) with share of voice, sentiment score, and all-time mention counts. Paginated. sov/sentimentScore are windowed by days and honor the platform/topicId/unbranded/branded/country/locationId filters; mentions is always all-time and ignores days + all filters (mirrors the in-app Competitors list); visibilityScore and citations are null in the list view — see the detail endpoint for those. `days` defaults to 30, max 365. `limit` defaults to 20, max 100.

## Path parameters

- `projectId` string, uuid, required

## Query parameters

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

## Response `200`

Competitors list.

- CompetitorsListResponse
  - `competitors` CompetitorListItem[], required
    - `id` string, uuid
    - `name` string
    - `domain` string, nullable
    - `sov` number
    - `visibilityScore` unknown
    - `mentions` integer — All-time count — ignores `days` and every filter (mirrors the in-app Competitors list).
    - `citations` unknown
    - `sentimentScore` number, nullable
  - `totalCount` integer, required
  - `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)
