# Facts (/docs/facts)



**Facts** are stable knowledge-graph entities: companies, investment rounds, and acquisitions. They are not documents. Use them when you need deal amounts, founding dates, or canonical organization IDs.

For the documents that mention those entities, use [Proof points](/docs/proof-points). For grouped events that mix documents and facts, use [Manifestations](/docs/core-concepts/manifestations).

Each fact type exposes:

* **Search** — a page of records (`skip` / `take`, max 100)
* **Time series** — counts per bucket; investments and acquisitions also return `amounts`

All of these are `POST` with a JSON body. Date filters use calendar dates (`YYYY-MM-DD`), not datetimes.

## Shared request fields [#shared-request-fields]

| Field                          | Purpose                                                                 |
| ------------------------------ | ----------------------------------------------------------------------- |
| `topicIds` / `organizationIds` | Scope to topics and organizations                                       |
| `query`                        | Optional free-text over organization labels (max 50 characters)         |
| `certainty`                    | Topic-link confidence threshold, 0–1. Only valid when `topicIds` is set |
| `start` / `end`                | Inclusive date window                                                   |
| `skip` / `take`                | Offset paging; `take` max 100                                           |
| `sortDirection`                | `desc` (default) or `asc`                                               |
| `resolution`                   | Time series only: `month`, `quarter`, or `year` (default `year`)        |

## Entity types [#entity-types]

* [Organizations](/docs/facts/organizations)
* [Investments](/docs/facts/investments)
* [Acquisitions](/docs/facts/acquisitions)

Interactive schemas live in the [API reference](/docs/api-reference).
