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

# New Data Scope: Financial Reports

> Search and Answer can now scope results to financial reports — 18.7 million SEC filings dating back to 1994, chunked and indexed for precise, retrieval-ready results.

*Released: September 8, 2026*

The [`scope`](/data/data-concepts#scopes) parameter on [`/search`](/search/guides/basic-search) and [`/answer`](/answer/guides/basic-answer) now accepts a new **financial reports** scope alongside [`news`](/data/news), [`people`](/data/people), [`companies`](/data/companies), and [`wikipedia`](/data/wikipedia). It searches over 18.7 million SEC filings dating back to 1994, chunked and indexed into more than 350 million searchable records for precise, retrieval-ready results.

## Highlights

* **18.7 million filings, back to 1994** — Annual reports, quarterly filings, and more, chunked and indexed for precise retrieval.
* **Works with Search and Answer** — Retrieve readable full-text chunks directly, or get an LLM-generated answer grounded in citations that point straight back to the filing.
* **Narrow by publish date** — Scope results to a specific date range.
* **Updated daily** — New filings are indexed daily.

## Quick Start

<CodeGroup>
  ```python Python theme={null}
  from seltz import Seltz

  client = Seltz(api_key="your-api-key")

  response = client.answer(
      "What risk factors did Acme Corp disclose in its most recent 10-K?",
      scope="financial-reports",
  )

  print(response.answer)
  for citation in response.citations:
      print(citation.url)
  ```

  ```typescript TypeScript theme={null}
  import { Seltz } from "seltz";

  const client = new Seltz({ apiKey: "your-api-key" });

  const response = await client.answer({
    query: "What risk factors did Acme Corp disclose in its most recent 10-K?",
    scope: "financial-reports",
  });

  console.log(response.answer);
  for (const citation of response.citations) {
    console.log(citation.url);
  }
  ```

  ```bash cURL theme={null}
  curl -X POST https://api.seltz.ai/v1/answer \
    -H "x-api-key: $SELTZ_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"query": "What risk factors did Acme Corp disclose in its most recent 10-K?", "scope": "financial-reports"}'
  ```
</CodeGroup>

<CardGroup cols={2}>
  <Card title="Financial reports" icon="book" href="/data/financial-reports?utm_source=changelog&utm_medium=changelog&utm_campaign=financial-reports">
    Understanding the financial reports scope
  </Card>

  <Card title="Data Concepts" icon="layer-group" href="/data/data-concepts?utm_source=changelog&utm_medium=changelog&utm_campaign=financial-reports">
    Understanding scopes and what each one contains
  </Card>
</CardGroup>
