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

# Get a cited domain's detail

`GET /api/mcp/projects/{projectId}/sources/domains/{domain}`

Full detail for a single cited source domain — citation share, trend, top prompts, topics, platforms, and content-type breakdown.

## Path parameters

- `projectId` string, uuid, required
- `domain` string, required

## Query parameters

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

## Response `200`

Domain detail.

- DomainDetailResponse
  - `domain` string, required
  - `citationShare` number, required
  - `citationShareChange` number
  - `totalCitations` integer, required — "Sources" in the UI — rows flagged source_type in (source, both), used to generate responses.
  - `inlineCitations` integer, required — "Citations" in the UI — rows flagged source_type in (citation, both), appeared as an inline citation/link.
  - `trend` DomainTrendPoint[], required
    - `date` string
    - `isoDate` string
    - `citations` integer
    - `responses` integer
  - `urlTrends` object[]
    - `url` string
    - `label` string
    - `data` DomainTrendPoint[]
      - `date` string
      - `isoDate` string
      - `citations` integer
      - `responses` integer
  - `prompts` object[], required
    - `promptId` string
    - `promptText` string
    - `citationCount` integer
    - `responseCount` integer
    - `citationRate` number
    - `topicName` string, nullable
    - `share` number
  - `topics` object[], required
    - `topicId` string
    - `topicName` string
    - `citationCount` integer
    - `responseCount` integer
    - `promptCount` integer
    - `share` number
  - `platforms` object[], required
    - `platform` string
    - `citationCount` integer
    - `responseCount` integer
    - `share` number
  - `contentTypes` object[], required
    - `contentType` string
    - `citationCount` integer
    - `share` number
  - `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)
