---
source_url: "https://massive.com/docs/rest/stocks/filings/10-k-sections"
title: "10-K Sections | Stocks REST API - Massive"
mirrored_at: 2026-08-05T03:39:03.408Z
host: massive.com
cited_in_42a: true
mirror_canonical: "https://index.42a.ai/massive.com/docs/rest/stocks/filings/10-k-sections"
---

> **Original source:** https://massive.com/docs/rest/stocks/filings/10-k-sections

GET

/stocks/filings/10-K/vX/sections

Copy this page's markdown — spec, plan access, and sample. Paste into any chat.

Open the .md URL in a new tab — share, bookmark, or paste the URL into an AI tool.

This endpoint is free to use during the early-access beta period. Features may change or move to different plans later.

Retrieve clean plain-text extracts of key narrative sections from annual 10-K filings, including Business and Risk Factors. These provide detailed insights into company operations, strategy, markets, and material risks in structured AI-ready format.

Use Cases: NLP and text analysis, automated risk profiling, competitive benchmarking, topic modeling, summarization, and LLM knowledge base construction.

Plan AccessIncluded in all Stocks plans

Updated daily

Updated daily

Updated daily

Updated daily

Updated daily

Updated daily

Updated daily

Updated daily

Plan RecencyUpdated daily

Plan HistoryNot applicable to this endpoint

Query Parameters

cik

string

SEC Central Index Key (10 digits, zero-padded).

ticker

string

Stock ticker symbol for the company.

section

enum (string)

Standardized section identifier from the filing (e.g. 'business', 'risk\_factors', etc.).

filing\_date

string

Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD). Value must be formatted 'yyyy-mm-dd'.

period\_end

string

Period end date that the filing relates to (formatted as YYYY-MM-DD). Value must be formatted 'yyyy-mm-dd'.

limit

integer

Limit the maximum number of results returned. Defaults to '10' if not specified. The maximum allowed limit is '100'.

sort

string

A comma separated list of sort columns. For each column, append '.asc' or '.desc' to specify the sort direction. The sort column defaults to 'period\_end' if not specified. The sort order defaults to 'desc' if not specified.

Response Attributes

next\_url

string

optional

If present, this value can be used to fetch the next page.

request\_id

string

A request id assigned by the server.

results

array (object)

The results for this request.

cik

string

optional

SEC Central Index Key (10 digits, zero-padded).

filing\_date

string

optional

Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD).

filing\_url

string

optional

SEC URL source for the full filing.

period\_end

string

optional

Period end date that the filing relates to (formatted as YYYY-MM-DD).

section

string

optional

Standardized section identifier from the filing (e.g. 'business', 'risk\_factors', etc.).

text

string

optional

Full raw text content of the section, including headers and formatting.

ticker

string

optional

Stock ticker symbol for the company.

status

enum (OK)

The status of this request's response.

Code Examples

```
curl -X GET "https://api.massive.com/stocks/filings/10-K/vX/sections"
```

Query URL

GET

https://api.massive.com/stocks/filings/10-K/vX/sections?apiKey=YOUR\_API\_KEY

Run query unavailable

Scroll to see updated query response

Response Object

```
{
  "count": 2,
  "next_url": "https://api.massive.com/stocks/filings/10-K/vX/sections?cursor=eyJsaW1pd...",
  "request_id": "a3f8b2c1d4e5f6g7",
  "results": [
    {
      "cik": "0000320193",
      "filing_date": "2023-11-03",
      "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/0000320193-23-000106.txt",
      "period_end": "2023-09-30",
      "section": "risk_factors",
      "text": "Item 1A. Risk Factors\n\nInvesting in our stock involves risk. In addition to the other information in this Annual Report on Form 10-K, the following risk factors should be carefully considered...",
      "ticker": "AAPL"
    },
    {
      "cik": "0000789019",
      "filing_date": "2023-07-27",
      "filing_url": "https://www.sec.gov/Archives/edgar/data/789019/0000950170-23-035122.txt",
      "period_end": "2023-06-30",
      "section": "risk_factors",
      "text": "Item 1A. RISK FACTORS\n\nOur operations and financial results are subject to various risks and uncertainties...",
      "ticker": "MSFT"
    }
  ],
  "status": "OK"
}
```

Did you find this page helpful?

Do you still need help with something?