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
| Param | In | Values |
|---|---|---|
ident | path | US 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"
}