---
title: "Get Brand Facts"
method: GET
path: "/api/v1/knowledge-base/facts"
tags: ["Knowledge Base"]
---

# Get Brand Facts

`GET /api/v1/knowledge-base/facts`

Lists a website's brand facts, newest first, with offset paging. Filter by pillar, review status (defaults to approved), source type, or `unfiled=true` for facts not under any published pillar. `unfiled` and `pillar_id` are mutually exclusive. Also available as the MCP tool `get_brand_facts`.

## Query parameters

- `website_id` string, uuid, required
- `pillar_id` string, uuid
- `status` 'approved' | 'pending' | 'rejected'
- `source_type` 'research' | 'response' | 'upload' | 'content_hub'
- `unfiled` 'true' | 'false'
- `limit` integer
- `offset` integer

## Response `200`

Successful response with one page of facts and the uncapped total

- object
  - `facts` BrandFact[], required
    - `id` string, uuid, required
    - `text` string, required — The fact statement.
    - `status` 'approved' | 'pending' | 'rejected', required — Review status of the fact.
    - `confidence` 'high' | 'medium' | 'low' | 'null', nullable, required — Confidence level assigned during ingestion, or null when unrated.
    - `source_url` string, nullable, required — URL the fact was extracted from, stored without protocol.
    - `source_quote` string, nullable, required — Verbatim quote from the source backing the fact.
    - `source_type` 'research' | 'response' | 'upload' | 'content_hub', required — How the fact entered the Knowledge Base.
    - `pillar` BrandFactPillar, nullable, required — The published pillar the fact is filed under, or null when the fact is unfiled.
      - `id` string, uuid, required
      - `name` string, required
    - `created_at` string, required — ISO 8601 timestamp of when the fact was added.
  - `total` integer, required — Total facts matching the filters, ignoring paging.

## Other responses

- `400` — Bad request - Invalid parameters
- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - No access to this website, or the Knowledge Base is not enabled for the organization

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/versions/6c5d71622cb9/schema)
