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
Run the example script below. Get your free API key on [sec-api.io](https://sec-api.io)
40
106
and replace `YOUR_API_KEY` with it.
41
107
42
108
```python
@@ -58,7 +124,6 @@ sio.wait()
58
124
59
125
60
126
61
-
62
127
# Response Format
63
128
64
129
- `accessionNo` (string) - Accession number of filing, e.g. 0000028917-20-000033
@@ -73,6 +138,8 @@ sio.wait()
73
138
- `linkToHtml` (string) - Link to index page of the filing listing all exhibits and the original HTML file.
74
139
- `linkToXbrl` (string, optional) - Link to XBRL version of the filing (if available).
75
140
- `filedAt` (string) - The date (format: YYYY-MM-DD HH:mm:SS TZ) the filing was filed, eg 2019-12-06T14:41:26-05:00.
141
+
- `periodOfReport` (string, if reported) - Period of report, e.g. 2021-06-08
142
+
- `effectivenessDate` (string, if reported) - Effectiveness date, e.g. 2021-06-08
76
143
- `id` (string) - Unique ID of the filing.
77
144
- `entities` (array) - A list of all entities referred to in the filing. The first item in the array always represents the filing issuer. Each array element is an object with the following keys:
78
145
- `companyName` (string) - Company name of the entity, e.g. DILLARD'S, INC. (Issuer)
@@ -97,6 +164,33 @@ sio.wait()
97
164
- `documentUrl` (string) - URL to the file on SEC.gov
98
165
- `type` (string, optional) - Type of the file, e.g. EX-101.INS, EX-101.DEF or EX-101.PRE
99
166
- `size` (string, optional) - Size of the file, e.g. 6627216
167
+
- `seriesAndClassesContractsInformation` (array) - List of series and classes/contracts information
168
+
- `series` (string) - Series ID, e.g. S000001297
169
+
- `name` (string) - Name of entity, e.g. PRUDENTIAL ANNUITIES LIFE ASSUR CORP VAR ACCT B CL 1 SUB ACCTS
170
+
- `classesContracts` (array) - List of classes/contracts. Each list item has the following keys:
171
+
- `classContract` (string) - Class/Contract ID, e.g. C000011787
172
+
- `name` (string) - Name of class/contract entity, e.g. Class L
173
+
- `ticker` (string) - Ticker class/contract entity, e.g. URTLX
174
+
175
+
176
+
## 13F Institutional Ownerships
177
+
178
+
13F filings report institutional ownerships. Each 13F filing has an attribute `holdings` (array). An array item in holdings represents one holding and has the following attributes:
179
+
180
+
- `nameOfIssuer` (string) - Name of issuer, e.g. MICRON TECHNOLOGY INC
181
+
- `titleOfClass` (string) - Title of class, e.g. COM
182
+
- `cusip` (string) - CUSIP of security, e.g. 98850P109
183
+
- `value` (integer) - Absolute holding value in $, e.g. 18000. Note: `value` doesn't have to be multiplied by 1000 anymore. It's done by our API automatically.
184
+
- `shrsOrPrnAmt` (object)
185
+
- `sshPrnamt` (integer) - Shares or PRN AMT, e.g. 345
186
+
- `sshPrnamtType` (string) - Share/PRN type, e.g. "SH"
187
+
- `putCall` (string, optional) - Put / Call, e.g. Put
188
+
- `investmentDiscretion` (string) - Investment discretion, e.g. "SOLE"
189
+
- `otherManager` (string, optional) - Other manager, e.g. 7
0 commit comments