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

# Get a cited page's cached content

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

Cached scraped markdown and entity mentions (brand/competitor) for a cited page. `{url}` must be percent-encoded. Returns 404 if the URL has not been cited in the project's data window.

## Path parameters

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

## Query parameters

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

## Response `200`

Cached page content.

- SourceUrlContentResponse — `available:false` (never scraped, or not yet cached) omits `markdown`/`cachedAt`/`publishedAt`/`updatedAt` — never a live scrape.
  - `available` boolean, required
  - `title` string, nullable
  - `markdown` string
  - `cachedAt` string, date-time
  - `publishedAt` string, nullable
  - `updatedAt` string, nullable
  - `brandMentioned` boolean, required
  - `mentions` SourceUrlContentMention[], required
    - `entityName` string
    - `entityType` string
    - `prominence` string, nullable
    - `sentiment` string, nullable
    - `isRecommended` boolean
    - `contextSnippet` string, nullable
    - `sectionContext` string, nullable
    - `inTitle` boolean
    - `inHeading` boolean
    - `inList` boolean
    - `positionInList` integer, nullable
    - `competitorDomain` string, 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.dev/searchable/apis/searchable-rest-api.md) · [All operations](https://skmtc.dev/searchable/apis/searchable-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/searchable/searchable-rest-api/revisions/301b04e800ed/schema)
