> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tryprofound.com/llms.txt
> Use this file to discover all available pages before exploring further.

# FactCheck Claims

The inaccurate claims behind your accuracy score — the false statements AI
answers made about your category, from the platform's FactCheck tab. Returns a
flat, paginated list, or `group_by` one dimension to section them. A claim is
`{ cluster_id, claim, occurrence }` plus whatever `include` adds.

* **`occurrence`:** the % of scoped responses that carry the claim.
* **`include`:** any of `theme`, `reasoning`, `models`, `evidence`, `citation_sources`.
  * `models[]` — which models make the claim: `{ id, name, occurrence }`.
  * `evidence[]` — refuting knowledge-base snippets: `{ id, kb_path, kb_snippet, source_updated_at }`.
  * `citation_sources[]` — the cited pages driving the claim: `{ href, hostname, citation_category, domain_category, snippet, citation_share }`. `citation_share` is a percentage, model-balanced, matching the Citations tab.
* **`group_by`:** 0 or 1 of `model`, `region`, `persona`, `prompt`, `topic`, `tag`, `theme` (no `citation` or `date` — those are scores dimensions). Empty → one flat paginated list; a dimension → one section per value: `{ <dim>: { id, name }, accuracy, accurate, inaccurate, total_claims, claims: […] }`, each carrying **all** its claims.
* **`filter`:** the same constrained tree as [scores](/rest-api/reports/query-factcheck-v2) — a top-level `and` of single-field leaves over `model`/`topic`/`region`/`persona`/`prompt`/`tag` (only `topic` negatable).

<Note>
  A few guardrails return `422` (with a message): `citation_sources` isn't available with `group_by` (its share is scope-sensitive) — request it on the flat list; `group_by: ["tag"]` can't be combined with a `tag` filter (tags are multi-valued, so co-tag sections would escape the filter); and sectioning by `model` over an unusually large scope (>\~2000 inaccurate clusters) — narrow the range or `filter`.
</Note>

<Accordion title="Streaming (SSE) variant (same body, /stream)">
  `POST /v2/reports/factcheck/claims/stream` takes the **same request body**
  and returns [Server-Sent Events](https://developer.mozilla.org/docs/Web/API/Server-sent_events):
  one `summary` event (the `info` block), then one `result` event per claim.
  `limit`/`cursor` are ignored; it returns everything by default. Pass
  `max_results` to cap.

  The stream is the **flat list only** — `group_by` and the per-claim
  `evidence`/`citation_sources` lookups return `422`; use the non-stream
  endpoint for sectioned or enriched claims.

  ```text Response (text/event-stream) theme={null}
  event: summary
  data: { ...the info block... }

  event: result    ← one per claim, same shape as data[] above
  data: {"cluster_id": "7a5…", "claim": "Profound covers more than 10 AI engines.", "occurrence": 6.6}
  ```
</Accordion>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.tryprofound.com/v2/reports/factcheck/claims \
    -H "X-API-Key: <your-api-key>" \
    -H "Content-Type: application/json" \
    -d '{
      "category_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "start_date": "2026-06-09",
      "end_date": "2026-06-15",
      "include": ["reasoning", "citation_sources"]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "info": {
      "total_results": 41,
      "count": 25,
      "next_cursor": "eyJ…",
      "models": ["ChatGPT", "Google Gemini", "Perplexity", "Claude", "..."],
      "group_by": [],
      "start_date": "2026-06-09",
      "end_date": "2026-06-15",
      "filter": null,
      "include": ["reasoning", "citation_sources"]
    },
    "data": [
      {
        "cluster_id": "7a576…",
        "claim": "Profound covers more than 10 AI engines.",
        "occurrence": 6.6,
        "reasoning": "Conflates GEO tooling with the engines Profound actually tracks.",
        "citation_sources": [
          {
            "href": "tryprofound.com/blog/best-geo-tools",
            "hostname": "tryprofound.com",
            "citation_category": "owned",
            "domain_category": "owned",
            "snippet": "Profound tracks ten answer engines…",
            "citation_share": 14.2
          }
        ]
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml POST /v2/reports/factcheck/claims
openapi: 3.1.0
info:
  title: External API
  version: c2f5e9726bee64ff80842cf9fe8002df9c276c0a
servers:
  - url: https://api.tryprofound.com
    description: Production Server
security: []
paths:
  /v2/reports/factcheck/claims:
    post:
      tags:
        - Reports
        - Reports
      summary: Query Claims
      operationId: query_claims_v2_reports_factcheck_claims_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FactcheckClaimsQuery'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FactcheckClaimsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
        - BearerAuth: []
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Profound from '@profoundai/client';

            const client = new Profound({
              apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted
            });

            const response = await client.reports.factcheck.claims.queryClaims({
              category_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
              end_date: 'end_date',
              start_date: 'start_date',
            });

            console.log(response.data);
        - lang: Python
          source: |-
            import os
            from profound import Profound

            client = Profound(
                api_key=os.environ.get("PROFOUND_API_KEY"),  # This is the default and can be omitted
            )
            response = client.reports.factcheck.claims.query_claims(
                category_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
                end_date="end_date",
                start_date="start_date",
            )
            print(response.data)
components:
  schemas:
    FactcheckClaimsQuery:
      properties:
        category_id:
          type: string
          format: uuid
          title: Category Id
        start_date:
          type: string
          title: Start Date
          description: YYYY-MM-DD, ET, inclusive
        end_date:
          type: string
          title: End Date
          description: YYYY-MM-DD, ET, inclusive
        group_by:
          items:
            type: string
            enum:
              - model
              - region
              - persona
              - prompt
              - topic
              - tag
              - theme
          type: array
          maxItems: 1
          title: Group By
          description: >-
            Optional single dim to section the claims (e.g. per model). Empty →
            one flat claim list.
        filter:
          anyOf:
            - $ref: '#/components/schemas/FilterNode'
            - type: 'null'
          description: Scope which responses count (see Filtering).
        include:
          anyOf:
            - items:
                type: string
                enum:
                  - theme
                  - reasoning
                  - models
                  - evidence
                  - citation_sources
              type: array
            - type: 'null'
          title: Include
          description: Optional per-claim detail fields to add to each claim (see options).
        limit:
          anyOf:
            - type: integer
              maximum: 100
              exclusiveMinimum: 0
            - type: 'null'
          title: Limit
          description: Claims (or sections) per page; default 25.
        max_results:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
          title: Max Results
          description: 'Stream only: cap entries returned.'
        cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Cursor
      additionalProperties: false
      type: object
      required:
        - category_id
        - start_date
        - end_date
      title: FactcheckClaimsQuery
      description: >-
        The inaccurate claims — flat + paginated, or `group_by` one dim to
        section them (all claims per section).
    FactcheckClaimsResponse:
      properties:
        info:
          $ref: '#/components/schemas/FactcheckClaimsInfo'
        data:
          items:
            $ref: '#/components/schemas/FactcheckClaimsRow'
          type: array
          title: Data
      type: object
      required:
        - info
        - data
      title: FactcheckClaimsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FilterNode:
      properties:
        and:
          anyOf:
            - items:
                $ref: '#/components/schemas/FilterNode'
              type: array
            - type: 'null'
          title: And
        or:
          anyOf:
            - items:
                $ref: '#/components/schemas/FilterNode'
              type: array
            - type: 'null'
          title: Or
        not:
          anyOf:
            - $ref: '#/components/schemas/FilterNode'
            - type: 'null'
        field:
          anyOf:
            - type: string
            - type: 'null'
          title: Field
        op:
          anyOf:
            - type: string
            - type: 'null'
          title: Op
        value:
          title: Value
      additionalProperties: false
      type: object
      title: FilterNode
      description: A leaf (`field`/`op`/`value`) or an `and`/`or`/`not` group.
    FactcheckClaimsInfo:
      properties:
        total_results:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Results
          description: >-
            Total rows matching the query before pagination (null when not
            computed).
        count:
          type: integer
          title: Count
          description: Number of rows returned in `data` for this page.
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
          description: Opaque cursor for the next page; null on the last page.
        models:
          items:
            type: string
          type: array
          title: Models
          description: Display names of the models the report covers.
        start_date:
          type: string
          title: Start Date
          description: Echoed request start date (YYYY-MM-DD, ET).
        end_date:
          type: string
          title: End Date
          description: Echoed request end date (YYYY-MM-DD, ET).
        filter:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Filter
          description: Echoed normalized filter tree, or null when no filter was sent.
        group_by:
          items:
            type: string
          type: array
          title: Group By
          description: Dimension the claims are sectioned by (empty → one flat list).
        include:
          items:
            type: string
          type: array
          title: Include
          description: Per-claim detail fields requested.
      additionalProperties: true
      type: object
      required:
        - count
        - models
        - start_date
        - end_date
        - group_by
      title: FactcheckClaimsInfo
    FactcheckClaimsRow:
      properties:
        cluster_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Cluster Id
        claim:
          anyOf:
            - type: string
            - type: 'null'
          title: Claim
        occurrence:
          anyOf:
            - type: number
            - type: 'null'
          title: Occurrence
        reasoning:
          anyOf:
            - type: string
            - type: 'null'
          title: Reasoning
        models:
          anyOf:
            - items:
                $ref: '#/components/schemas/ClaimModelOccurrence'
              type: array
            - type: 'null'
          title: Models
        evidence:
          anyOf:
            - items:
                $ref: '#/components/schemas/ClaimEvidence'
              type: array
            - type: 'null'
          title: Evidence
        citation_sources:
          anyOf:
            - items:
                $ref: '#/components/schemas/ClaimCitationSource'
              type: array
            - type: 'null'
          title: Citation Sources
        model:
          anyOf:
            - $ref: '#/components/schemas/DimensionRef'
            - type: 'null'
        region:
          anyOf:
            - $ref: '#/components/schemas/DimensionRef'
            - type: 'null'
        persona:
          anyOf:
            - $ref: '#/components/schemas/DimensionRef'
            - type: 'null'
        prompt:
          anyOf:
            - $ref: '#/components/schemas/DimensionRef'
            - type: 'null'
        topic:
          anyOf:
            - $ref: '#/components/schemas/DimensionRef'
            - type: 'null'
        tag:
          anyOf:
            - $ref: '#/components/schemas/DimensionRef'
            - type: 'null'
        theme:
          anyOf:
            - type: string
            - $ref: '#/components/schemas/DimensionRef'
            - type: 'null'
          title: Theme
          description: >-
            Claim theme (string), or an `{id, name}` ref when sectioning by
            `theme`.
        accuracy:
          anyOf:
            - type: number
            - type: 'null'
          title: Accuracy
        accurate:
          anyOf:
            - type: integer
            - type: 'null'
          title: Accurate
        inaccurate:
          anyOf:
            - type: integer
            - type: 'null'
          title: Inaccurate
        total_claims:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Claims
        claims:
          anyOf:
            - items:
                $ref: '#/components/schemas/FactcheckClaim'
              type: array
            - type: 'null'
          title: Claims
      additionalProperties: true
      type: object
      title: FactcheckClaimsRow
      description: >-
        A flat claim, or (with `group_by`) a section: a dimension + accuracy
        rollup + its `claims`.


        Present fields depend on `group_by`/`include`.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    ClaimModelOccurrence:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        occurrence:
          anyOf:
            - type: number
            - type: 'null'
          title: Occurrence
      type: object
      title: ClaimModelOccurrence
    ClaimEvidence:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
        kb_path:
          anyOf:
            - type: string
            - type: 'null'
          title: Kb Path
        kb_snippet:
          anyOf:
            - type: string
            - type: 'null'
          title: Kb Snippet
        source_updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Updated At
      type: object
      title: ClaimEvidence
    ClaimCitationSource:
      properties:
        href:
          anyOf:
            - type: string
            - type: 'null'
          title: Href
        hostname:
          anyOf:
            - type: string
            - type: 'null'
          title: Hostname
        citation_category:
          anyOf:
            - type: string
            - type: 'null'
          title: Citation Category
        domain_category:
          anyOf:
            - type: string
            - type: 'null'
          title: Domain Category
        snippet:
          anyOf:
            - type: string
            - type: 'null'
          title: Snippet
        citation_share:
          anyOf:
            - type: number
            - type: 'null'
          title: Citation Share
      type: object
      title: ClaimCitationSource
    DimensionRef:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
      type: object
      title: DimensionRef
      description: An ``{id, name}`` reference for a grouped dimension value.
    FactcheckClaim:
      properties:
        cluster_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Cluster Id
        claim:
          anyOf:
            - type: string
            - type: 'null'
          title: Claim
        occurrence:
          anyOf:
            - type: number
            - type: 'null'
          title: Occurrence
        theme:
          anyOf:
            - type: string
            - type: 'null'
          title: Theme
        reasoning:
          anyOf:
            - type: string
            - type: 'null'
          title: Reasoning
        models:
          anyOf:
            - items:
                $ref: '#/components/schemas/ClaimModelOccurrence'
              type: array
            - type: 'null'
          title: Models
        evidence:
          anyOf:
            - items:
                $ref: '#/components/schemas/ClaimEvidence'
              type: array
            - type: 'null'
          title: Evidence
        citation_sources:
          anyOf:
            - items:
                $ref: '#/components/schemas/ClaimCitationSource'
              type: array
            - type: 'null'
          title: Citation Sources
      additionalProperties: true
      type: object
      title: FactcheckClaim
      description: >-
        One inaccurate claim.
        `theme`/`reasoning`/`models`/`evidence`/`citation_sources` follow
        `include`.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    BearerAuth:
      type: http
      scheme: bearer

````