You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+195-3Lines changed: 195 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@ It includes:
5
5
6
6
- Query and Full-Text Search API
7
7
- Real-Time Stream API
8
-
- Filings Render API
8
+
- XBRL-to-JSON Converter API + Financial Statements
9
+
- Filing Render & Download API
9
10
10
11
11
12
# Data Coverage
@@ -14,6 +15,7 @@ It includes:
14
15
-**All +150 filing types** are supported, eg 10-Q, 10-K, 4, 8-K, 13-F, S-1, 424B4 and many more.
15
16
[See the list of supported form types here.](https://sec-api.io/list-of-sec-filing-types)
16
17
- Newly published filings are accessible in real-time
18
+
- XBRL-to-JSON converter and parser API. Extract standardized financial statements from any 10-K and 10-Q filing.
17
19
- 13F holdings API included. Monitor all institutional ownerships in real-time.
18
20
- Every filing is **mapped to a CIK and ticker**
19
21
- All filings in JSON - **no XBRL/XML**
@@ -165,10 +167,200 @@ print(filings)
165
167
> See the documentation for more details: https://sec-api.io/docs/full-text-search-api
166
168
167
169
168
-
# Filing Render API
170
+
# XBRL-To-JSON Converter API
169
171
170
-
Used to fetch the content of any filing or exhibit.
172
+
Parse and standardize any XBRL and convert it to JSON or pandas dataframes. Extract financial statements and meta data from 10-K and 10-Q filings.
171
173
174
+
The entire US GAAP taxonomy is fully supported. All XBRL items are fully converted into JSON, including `us-gaap`, `dei` and custom items. XBRL facts are automatically mapped to their respective context including period instants and date ranges.
175
+
176
+
All financial statements are accessible and standardized:
177
+
178
+
- StatementsOfIncome
179
+
- StatementsOfIncomeParenthetical
180
+
- StatementsOfComprehensiveIncome
181
+
- StatementsOfComprehensiveIncomeParenthetical
182
+
- BalanceSheets
183
+
- BalanceSheetsParenthetical
184
+
- StatementsOfCashFlows
185
+
- StatementsOfCashFlowsParenthetical
186
+
- StatementsOfShareholdersEquity
187
+
- StatementsOfShareholdersEquityParenthetical
188
+
189
+
Variants such as `ConsolidatedStatementsofOperations` or `ConsolidatedStatementsOfLossIncome` are automatically standardized to their root name, e.g. `StatementsOfIncome`.
-`htm_url`: Provide the URL of the filing ending with `.htm`.
225
+
Example URL: https://www.sec.gov/Archives/edgar/data/1318605/000156459021004599/tsla-10k_20201231.htm
226
+
-`xbrl_url`: Provide the URL of the XBRL file ending with `.xml`. The XBRL file URL can be found in the `dataFiles` array returned by our query API. The array item has the description `EXTRACTED XBRL INSTANCE DOCUMENT` or similar.
227
+
Example URL: https://www.sec.gov/Archives/edgar/data/1318605/000156459021004599/tsla-10k_20201231_htm.xml
228
+
-`accession_no`: Provide the accession number of the filing, e.g. `0001564590-21-004599`
0 commit comments