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
+97-9Lines changed: 97 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,9 @@ It includes:
34
34
35
35
**Structured Material Event Data from Form 8-K**
36
36
37
+
-[Auditor and Accountant Changes (Item 4.01)](#auditor-and-accountant-changes-item-401)
37
38
-[Financial Restatements & Non-Reliance on Prior Financial Results (Item 4.02)](#financial-restatements--non-reliance-on-prior-financial-results-item-402)
39
+
-[Changes of Directors, Board Members and Compensation Plans (Item 5.02)](#changes-of-directors-executives-board-members-and-compensation-plans-item-502)
## Structured Data of Material Event Disclosures under Form 8-K
841
845
842
-
Access and search all financial restatements and non-reliance on prior financial results filings from 2004 to present. The database includes information about the CIK, ticker and company name the restatement is associated with, the publication date of the restatement, list of identified issues, affected reporting periods that require restatement, affected financial statement items, auditor involvement, and more.
846
+
### Auditor and Accountant Changes (Item 4.01)
847
+
848
+
Access and search over 25,000 change-of-accountant disclosures under Item 4.01 in SEC Form 8-K filings, spanning from 2004 to present. Access information about former and newly appointed auditors, the reason for the change, the date of the change, the type of engagement, statements regarding material weaknesses in internal controls, and more.
843
849
844
850
```python
845
-
from sec_api importItem_4_02_Api
851
+
from sec_api importForm_8K_Item_X_Api
846
852
847
-
item_4_02_api=Item_4_02_Api("YOUR_API_KEY")
853
+
item_X_api=Form_8K_Item_X_Api("YOUR_API_KEY")
848
854
849
-
query= {
850
-
"query": "ticker:*",
851
-
"from": "0",
855
+
item_4_01_request= {
856
+
"query": "item4_01:* AND filedAt:[2024-01-01 TO 2024-12-31]",
857
+
"from": "0",# increase by 50 to fetch the next 50 results
Access and search over 8,000 financial restatements and non-reliance on prior financial results filings from 2004 to present. The database includes information about the CIK, ticker and company name the restatement is associated with, the publication date of the restatement, list of identified issues, affected reporting periods that require restatement, affected financial statement items, auditor involvement, and more.
870
+
871
+
```python
872
+
from sec_api import Form_8K_Item_X_Api
873
+
874
+
item_X_api = Form_8K_Item_X_Api("YOUR_API_KEY")
875
+
876
+
item_4_02_request = {
877
+
"query": "item4_02:* AND filedAt:[2024-01-01 TO 2024-12-31]",
> See the documentation for more details: https://sec-api.io/docs/form-8k-data-search-api
861
887
888
+
### Changes of Directors, Executives, Board Members and Compensation Plans (Item 5.02)
889
+
890
+
Access and search over 250,000 changes of directors, executives, board members and compensation plans disclosures under Item 5.02 in SEC Form 8-K filings, spanning from 2004 to present. The database includes information about the CIK, ticker and company name the change is associated with, the publication date of the change, the name of the director, her/his age, position, academic affiliations, compensation details, committee memberships, and more.
891
+
892
+
```python
893
+
from sec_api import Form_8K_Item_X_Api
894
+
895
+
item_X_api = Form_8K_Item_X_Api("YOUR_API_KEY")
896
+
897
+
item_5_02_request = {
898
+
"query": "item5_02:* AND filedAt:[2024-01-01 TO 2024-12-31]",
> See the documentation for more details: https://sec-api.io/docs/form-8k-data-item5-2-search-api
908
+
862
909
## Directors & Board Members Data API
863
910
864
911
Access and search the entire database of all directors and board members of all publicly listed companies on US stock exchanges. The database includes information about the CIK, ticker and company name the director is associated with, the name of the director, her/his age, position, director class, date of first election, independence status, committee memberships as well as qualifications and experiences.
@@ -1077,6 +1124,28 @@ print(response["data"])
1077
1124
1078
1125
> See the documentation for more details: https://sec-api.io/docs/aaer-database-api
1079
1126
1127
+
## SEC Litigation Releases Database API
1128
+
1129
+
Access and search the SEC Litigation Releases database. The database includes metadata and extracted structured data from all SEC Litigation Releases filed from 1995 to present.
> See the documentation for more details: https://sec-api.io/docs/sec-litigation-releases-database-api
1148
+
1080
1149
## SRO Filings Database API
1081
1150
1082
1151
Access and search all SRO filings published from 1995 to present. The database includes more than 30,000 SRO filings from all types of organizations, including National Securities Exchanges (NYSE, NASDAQ, CBOE, etc.), Joint Industry Plans, FINRA, Futures Exchanges (CME, CBOT, etc.), and more.
> See the documentation for more details: https://sec-api.io/docs/mapping-api
1178
1247
1248
+
## EDGAR Entities Database
1249
+
1250
+
Access information on over 800,000 EDGAR filing entities that have filed with the SEC since 1994. The database includes information about the CIK, IRS number, state of incorporation, fiscal year end, SIC code, current auditor, latest ICFR audit date, filer category, and more.
> See the documentation for more details: https://sec-api.io/docs/edgar-entities-database-api
1266
+
1179
1267
## Proxy Support
1180
1268
1181
1269
In certain cases, your corporate IT infrastructure may encounter issues with HTTPS requests, leading to SSL certificate errors. To resolve this, HTTP and HTTPS proxies can be passed into all API wrappers as shown in the example below. If you're unsure about which proxies to use, please consult your company's IT administrator.
0 commit comments