Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sec_api import ExecCompApi | |
execCompApi = ExecCompApi("YOUR_API_KEY") | |
# Get data by ticker | |
result_ticker = execCompApi.get_data("TSLA") | |
# Get data by CIK | |
result_cik = execCompApi.get_data("1326801") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sec_api import ExtractorApi | |
extractorApi = ExtractorApi("YOUR_API_KEY") | |
filing_url = "https://www.sec.gov/Archives/edgar/data/66600/000149315222016468/form8-k.htm" | |
# extract section 1.01 "Entry into Material Definitive Agreement" as cleaned text | |
section_text = extractorApi.get_section(filing_url, "1-1", "text") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sec_api import ExtractorApi | |
extractorApi = ExtractorApi("YOUR_API_KEY") | |
# Tesla 10-Q filing | |
filing_url = "https://www.sec.gov/Archives/edgar/data/1318605/000095017022006034/tsla-20220331.htm" | |
# extract section 1A "Risk Factors" in part 2 as cleaned text | |
section_text = extractorApi.get_section(filing_url, "part2item1a", "text") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# txt version of Tesla's 10-K filing | |
filing_url = "https://www.sec.gov/Archives/edgar/data/1318605/000156459021004599/0001564590-21-004599.txt" | |
section_text = extractorApi.get_section(filing_url, "1A", "text") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Accenture plc", | |
"ticker": "ACN", | |
"cik": "1467373", | |
"cusip": "G1151C101 G1150G111", | |
"exchange": "NYSE", | |
"isDelisted": false, | |
"category": "Domestic Common Stock", | |
"sector": "Technology", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Applied Optoelectronics Inc", | |
"ticker": "AAOI", | |
"cik": "1158114", | |
"cusip": "03823U102", | |
"exchange": "NASDAQ", | |
"isDelisted": false, | |
"category": "Domestic Common Stock", | |
"sector": "Technology", |
NewerOlder