Docs / API reference

GET /v1/subsidiaries/{ticker}

The company's subsidiaries and their jurisdictions of incorporation, parsed from Exhibit 21 of its latest 10-K. Exhibit 21 is an HTML exhibit whose layout varies by filer, so this is a best-effort table parse of a public exhibit, not a guaranteed field extraction.

Parameters

ParamInValues
identpathUS stock ticker or CIK, e.g. AAPL

Request

curl "https://api.edgrapi.com/v1/subsidiaries/AAPL" -H "X-API-Key: edgr_..."

Response

{
  "ticker": "AAPL", "cik": "0000320193", "company": "Apple Inc.", "count": 19,
  "subsidiaries": [
    { "name": "Apple Asia Limited", "jurisdiction": "Hong Kong" },
    { "name": "Apple Canada Inc.", "jurisdiction": "Canada" },
    { "name": "Braeburn Capital, Inc.", "jurisdiction": "Nevada, U.S." }
  ],
  "as_of": "2025-10-31", "source_10k": "0000320193-25-000079",
  "source": "SEC EDGAR 10-K Exhibit 21"
}

The list is empty (and free) when a filer files no Exhibit 21 or lists only significant subsidiaries under Item 601(b)(21)(ii). as_of is the 10-K filing date. For the raw exhibit, use /v1/download with the source_10k accession. Cost: 2 credits.