python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Build financial table from EDGAR XBRL files
When companies submit their reports to SEC, a number of files are made available. E.g. the latest 10-K of AAPL.
From this even the SEC website (and many others) make the tables as structured data.
Wha...
jollytall
Votes: 0
Answers: 1
How can extract an income statement from all company concepts?
All company concepts in xbrl format can be extracted with sec's RESTful api.
For example,i want to get tesla's concepts in xbrl format in 2020, get the tesla's cik and the url for api.
cik='1318605'
u...
showkey
Votes: 0
Answers: 2
How can get all non us-gaap concepts from some api or file?
Companies are allowed to create their own concepts. The conccept AccruedAndOtherCurrentLiabilities is generated by tesla. Get all us-gaap concepts from ssec's RESTful api with python code:
import requ...
showkey
Votes: 0
Answers: 1
What is the difference between a concept and a label in XBRL, and do all listed companies share the same US GAAP labels?
Let me show tesla's company facts data with sec's RESTful api:
https://data.sec.gov/api/xbrl/companyfacts/CIK0001318605.json
You can see all labels in 'facts ---- us-gaap' such as :
AccountsAndNot...
showkey
Votes: 0
Answers: 1