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
Data source: [sec.gov](https://www.sec.gov/edgar/searchedgar/companysearch.html)
32
-
33
33
# Overview
34
34
35
35
- The query API gives access to all over 18 million SEC Edgar filings of **over 8000** publicly listed companies, ETFs, hedge funds, mutual funds, and investors dating back to 1993.
@@ -799,6 +799,88 @@ print(response["brochures"])
799
799
800
800
> See the documentation for more details: https://sec-api.io/docs/investment-adviser-and-adv-api
801
801
802
+
# Form 13D/13G API
803
+
804
+
The API allows you to easily search and access all SEC Form 13D and Form 13G filings in a standardized JSON format. You can search the database by any form field, such as the CUSIP of the acquired security, name of the security owner, or the aggregate amount owned in percetnage of total shares outstanding.
805
+
806
+
```python
807
+
from sec_api import Form13DGApi
808
+
809
+
form13DGApi = Form13DGApi("YOUR_API_KEY")
810
+
811
+
# find the 50 most recently filed 13D/G filings disclosing 10% of more ownership of any Point72 company.
812
+
query = {
813
+
"query": {
814
+
"query_string": {
815
+
"query": "owners.name:Point72 AND owners.amountAsPercent:[10 TO *]"
816
+
}
817
+
},
818
+
"from": "0",
819
+
"size": "50",
820
+
"sort": [ { "filedAt": { "order": "desc" } } ]
821
+
}
822
+
823
+
response = form13DGApi.get_data(query)
824
+
825
+
print(response["filings"])
826
+
```
827
+
828
+
> See the documentation for more details: https://sec-api.io/docs/form-13d-13g-search-api
829
+
830
+
### Response Example
831
+
832
+
```json
833
+
{
834
+
"total": {
835
+
"value": 8,
836
+
"relation": "eq"
837
+
},
838
+
"filings": [
839
+
{
840
+
"id": "bbb1ef1892bfc12a2e398c903871e3ae",
841
+
"accessionNo": "0000902664-22-005029",
842
+
"formType": "SC 13D",
843
+
"filedAt": "2022-12-05T16:00:20-05:00",
844
+
"filers": [
845
+
{
846
+
"cik": "1813658",
847
+
"name": "Tempo Automation Holdings, Inc. (Subject)"
"titleOfSecurities": "Common Stock, par value $0.0001 per share",
856
+
"cusip": ["88024M108"],
857
+
"eventDate": "2022-11-22",
858
+
"schedule13GFiledPreviously": false,
859
+
"owners": [
860
+
{
861
+
"name": "Point72 Private Investments, LLC",
862
+
"memberOfGroup": {
863
+
"a": false,
864
+
"b": false
865
+
},
866
+
"sourceOfFunds": ["OO"],
867
+
"legalProceedingsDisclosureRequired": false,
868
+
"place": "Delaware",
869
+
"soleVotingPower": 0,
870
+
"sharedVotingPower": 5351000,
871
+
"soleDispositivePower": 0,
872
+
"sharedDispositivePower": 5351000,
873
+
"aggregateAmountOwned": 5351000,
874
+
"amountExcludesCertainShares": false,
875
+
"amountAsPercent": 20.3,
876
+
"typeOfReportingPerson": ["OO"]
877
+
}
878
+
]
879
+
}
880
+
]
881
+
}
882
+
```
883
+
802
884
# Float (Outstanding Shares) API
803
885
804
886
The Float API returns the number of outstanding shares of any publicly traded company listed on US exchanges. The dataset includes the most recent float as well as historical float data. If a company registered multiple share classes, the API returns the number of shares outstanding of each class.
0 commit comments