Skip to main content
GET
/
v2
/
filings
/
{accession}
/
section
/
{name}
curl
curl "https://api.stockcontext.com/v2/filings/0000320193-25-000079/section/risk_factors" \
  -H "X-API-Key: $STOCKCONTEXT_API_KEY"
{
  "data": {
    "accession": "0000320193-25-000079",
    "as_of": "2026-06-12T14:12:26Z",
    "cache_age_seconds": 0,
    "char_count": 68069,
    "form": "10-K",
    "freshness": "end_of_day",
    "market_status": "open",
    "section": "risk_factors",
    "symbol": "AAPL",
    "text": "Item 1A.    Risk Factors\nThe following summarizes factors that could have a material adverse effect on the Company’s business, reputation, results of operations, financial condition and stock price. The Company may not be able to accurately predict, control or mitigate these risks. Statements in this section are based on the Company’s beliefs and opinions regarding matters that could materially adversely affect the C … [truncated for docs]"
  },
  "schema_version": "2026-06-17.6"
}

Authorizations

X-API-Key
string
header
required

StockContext API key. Keys start with sctx_ and are sent on every REST request.

Path Parameters

accession
string
required

SEC accession number in dashed form (e.g. 0000320193-25-000001).

Example:

"0000320193-25-000079"

name
enum<string>
required

Filing section name. Allowed values: business, risk_factors, mda, quantitative_qualitative_disclosures, controls_and_procedures, press_release.

Available options:
business,
risk_factors,
mda,
quantitative_qualitative_disclosures,
controls_and_procedures,
press_release
Example:

"risk_factors"

Query Parameters

symbol
string | null

Optional cross-check. When supplied, the filing's resolved filer must match this symbol or the request fails with PARAM_INVALID.

Example:

"AAPL"

Response

Success envelope: { "data": ... }.

data
FilingSectionAvailableData · object
required

The endpoint payload. Present on every 2xx response; never null.

schema_version
string
required

StockContext response schema version for this 200 payload.