---
title: "Get a cited URL's detail"
method: GET
path: "/api/mcp/projects/{projectId}/sources/urls/{url}"
tags: ["Sources"]
---

# Get a cited URL's detail

`GET /api/mcp/projects/{projectId}/sources/urls/{url}`

Citation analytics for a single cited URL — total citations, prompts, mentions, and models that cite it. `{url}` must be percent-encoded. Pass unbranded=true to restrict to non-branded prompts. Returns 404 if the URL has not been cited in the project's data window. `days` defaults to 30.

## Path parameters

- `projectId` string, uuid, required
- `url` string, required

## Query parameters

- `days` integer
- `unbranded` 'true'
- `country` string
- `locationId` string

## Response `200`

URL detail.

- SourceUrlDetailResponse
  - `url` string, required
  - `title` string, nullable
  - `domain` string, required
  - `contentType` string, nullable
  - `totalCitations` integer, required
  - `totalResponses` integer, required
  - `responsesWithUrl` integer
  - `usage` number
  - `models` string[]
  - `brandMentioned` boolean, nullable
  - `prompts` CitationPagePrompt[], required
    - `promptId` string
    - `promptText` string
    - `intentCategory` string
    - `isBranded` boolean
    - `citationCount` integer
    - `models` string[]
    - `latestCitedAt` string, date-time
  - `mentions` SourceContentMention[], required
    - `canonicalName` string
    - `entityType` 'brand' | 'competitor' | 'third_party'
    - `mentionCount` integer
    - `competitorDomain` string, nullable
    - `avgPosition` number, nullable
    - `isRecommended` boolean
    - `prominence` string, nullable
    - `sentiment` string, nullable
    - `excerpts` MentionExcerpt[]
      - `entityName` string
      - `contextSnippet` string, nullable
      - `sectionContext` string, nullable
      - `prominence` string, nullable
      - `sentiment` string, nullable
  - `firstCitedAt` string, date-time, nullable
  - `latestCitedAt` string, date-time, nullable
  - `success` boolean, required — Always `true` — injected on every success response by this endpoint family's response wrapper.

## 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/versions/301b04e800ed/schema)
