Skip to content

Commit 7ee5da2

Browse files
committed
No release notes for this build
2 parents 56a8ec2 + a562a83 commit 7ee5da2

File tree

523 files changed

+978
-617
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

523 files changed

+978
-617
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ To get an API key, [sign up here](https://intrinio.com/).
44

55
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
66

7-
- API version: 2.25.0
8-
- Package version: 5.14.0
7+
- API version: 2.25.6
8+
- Package version: 5.15.0
99

1010

1111
## Requirements.
@@ -171,6 +171,7 @@ Class | Method | HTTP request | Description
171171
*MunicipalityApi* | [**get_municipality_financials**](docs/MunicipalityApi.md#get_municipality_financials) | **GET** /municipalities/{id}/financials | Financials for a Municipality
172172
*OptionsApi* | [**get_all_options_tickers**](docs/OptionsApi.md#get_all_options_tickers) | **GET** /options/tickers | Options Tickers
173173
*OptionsApi* | [**get_option_expirations_realtime**](docs/OptionsApi.md#get_option_expirations_realtime) | **GET** /options/expirations/{symbol}/realtime | Option Expirations Realtime
174+
*OptionsApi* | [**get_option_strikes_realtime**](docs/OptionsApi.md#get_option_strikes_realtime) | **GET** /options/strikes/{symbol}/{strike}/realtime | Option Strikes Realtime
174175
*OptionsApi* | [**get_options**](docs/OptionsApi.md#get_options) | **GET** /options/{symbol} | Options
175176
*OptionsApi* | [**get_options_by_symbol_realtime**](docs/OptionsApi.md#get_options_by_symbol_realtime) | **GET** /options/{symbol}/realtime | Options by Symbol Realtime
176177
*OptionsApi* | [**get_options_chain**](docs/OptionsApi.md#get_options_chain) | **GET** /options/chain/{symbol}/{expiration} | Options Chain
@@ -181,6 +182,7 @@ Class | Method | HTTP request | Description
181182
*OptionsApi* | [**get_options_prices_realtime**](docs/OptionsApi.md#get_options_prices_realtime) | **GET** /options/prices/{identifier}/realtime | Option Prices Realtime
182183
*OptionsApi* | [**get_options_stats_realtime**](docs/OptionsApi.md#get_options_stats_realtime) | **GET** /options/prices/{identifier}/realtime/stats | Option Stats Realtime
183184
*OptionsApi* | [**get_unusual_activity**](docs/OptionsApi.md#get_unusual_activity) | **GET** /options/unusual_activity/{symbol} | Options Unusual Activity
185+
*OptionsApi* | [**get_unusual_activity_universal**](docs/OptionsApi.md#get_unusual_activity_universal) | **GET** /options/unusual_activity | Options Unusual Activity Universal
184186
*OwnersApi* | [**get_all_owners**](docs/OwnersApi.md#get_all_owners) | **GET** /owners | All Owners
185187
*OwnersApi* | [**get_owner_by_id**](docs/OwnersApi.md#get_owner_by_id) | **GET** /owners/{identifier} | Owner by ID
186188
*OwnersApi* | [**insider_transaction_filings_by_owner**](docs/OwnersApi.md#insider_transaction_filings_by_owner) | **GET** /owners/{identifier}/insider_transaction_filings | Insider Transaction Filings by Owner

docs/CompanyApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Method | HTTP request | Description
4949

5050
[//]: # (START_OVERVIEW)
5151

52-
> ApiResponseCompanies get_all_companies(latest_filing_date=latest_filing_date, sic=sic, template=template, sector=sector, industry_category=industry_category, industry_group=industry_group, has_fundamentals=has_fundamentals, has_stock_prices=has_stock_prices, page_size=page_size, next_page=next_page)
52+
> ApiResponseCompanies get_all_companies(latest_filing_date=latest_filing_date, sic=sic, template=template, sector=sector, industry_category=industry_category, industry_group=industry_group, has_fundamentals=has_fundamentals, has_stock_prices=has_stock_prices, thea_enabled=thea_enabled, page_size=page_size, next_page=next_page)
5353
5454
#### All Companies
5555

@@ -78,10 +78,11 @@ industry_category = ''
7878
industry_group = ''
7979
has_fundamentals = True
8080
has_stock_prices = True
81+
thea_enabled = ''
8182
page_size = 100
8283
next_page = ''
8384

84-
response = intrinio.CompanyApi().get_all_companies(latest_filing_date=latest_filing_date, sic=sic, template=template, sector=sector, industry_category=industry_category, industry_group=industry_group, has_fundamentals=has_fundamentals, has_stock_prices=has_stock_prices, page_size=page_size, next_page=next_page)
85+
response = intrinio.CompanyApi().get_all_companies(latest_filing_date=latest_filing_date, sic=sic, template=template, sector=sector, industry_category=industry_category, industry_group=industry_group, has_fundamentals=has_fundamentals, has_stock_prices=has_stock_prices, thea_enabled=thea_enabled, page_size=page_size, next_page=next_page)
8586
print(response)
8687

8788
# Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict)
@@ -105,6 +106,7 @@ Name | Type | Description | Notes
105106
**industry_group** | str| Return companies in the given industry group | [optional]  
106107
**has_fundamentals** | bool| Return only companies that have fundamentals when True | [optional]  
107108
**has_stock_prices** | bool| Return only companies that have stock prices when True | [optional]  
109+
**thea_enabled** | bool| Return companies whose have been read by our Thea NLP and are ready for our company answers endpoint | [optional]  
108110
**page_size** | int| The number of results to return | [optional] [default to 100]  
109111
**next_page** | str| Gets the next page of data from a previous API call | [optional]  
110112
<br/>

docs/OptionUnusualTrade.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ Name | Type | Description
1515
**symbol** | str | The underlying option security symbol for the trade &nbsp;
1616
**timestamp** | date | The UTC timestamp of order placement &nbsp;
1717
**type** | str | The type of unusual trade &nbsp;
18-
**total_value** | float | The aggregated value of all option contract premiums included in the trade &nbsp;
19-
**contract_type** | str | The type of Option (put or call) &nbsp;
20-
**contract_expiration** | date | The expiration date for the options contract &nbsp;
21-
**contract_strike** | float | The strike price of the option contract &nbsp;
18+
**total_value** | float | The aggregated value of all option contract premiums included in the trade\\ &nbsp;
19+
**total_size** | float | The total number of contracts involved in a single transaction &nbsp;
20+
**average_price** | float | The average premium paid per option contract &nbsp;
21+
**contract** | str | &nbsp;
2222

2323
[//]: # (END_DEFINITION)
2424

docs/OptionsApi.md

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Method | HTTP request | Description
66
------------- | ------------- | -------------
77
[**get_all_options_tickers**](OptionsApi.md#get_all_options_tickers) | **GET** /options/tickers | Options Tickers
88
[**get_option_expirations_realtime**](OptionsApi.md#get_option_expirations_realtime) | **GET** /options/expirations/{symbol}/realtime | Option Expirations Realtime
9+
[**get_option_strikes_realtime**](OptionsApi.md#get_option_strikes_realtime) | **GET** /options/strikes/{symbol}/{strike}/realtime | Option Strikes Realtime
910
[**get_options**](OptionsApi.md#get_options) | **GET** /options/{symbol} | Options
1011
[**get_options_by_symbol_realtime**](OptionsApi.md#get_options_by_symbol_realtime) | **GET** /options/{symbol}/realtime | Options by Symbol Realtime
1112
[**get_options_chain**](OptionsApi.md#get_options_chain) | **GET** /options/chain/{symbol}/{expiration} | Options Chain
@@ -16,6 +17,7 @@ Method | HTTP request | Description
1617
[**get_options_prices_realtime**](OptionsApi.md#get_options_prices_realtime) | **GET** /options/prices/{identifier}/realtime | Option Prices Realtime
1718
[**get_options_stats_realtime**](OptionsApi.md#get_options_stats_realtime) | **GET** /options/prices/{identifier}/realtime/stats | Option Stats Realtime
1819
[**get_unusual_activity**](OptionsApi.md#get_unusual_activity) | **GET** /options/unusual_activity/{symbol} | Options Unusual Activity
20+
[**get_unusual_activity_universal**](OptionsApi.md#get_unusual_activity_universal) | **GET** /options/unusual_activity | Options Unusual Activity Universal
1921

2022

2123

@@ -171,6 +173,83 @@ Name | Type | Description | Notes
171173
[//]: # (END_OPERATION)
172174

173175

176+
[//]: # (START_OPERATION)
177+
178+
[//]: # (CLASS:OptionsApi)
179+
180+
[//]: # (METHOD:get_option_strikes_realtime)
181+
182+
[//]: # (RETURN_TYPE:ApiResponseOptionsChainRealtime)
183+
184+
[//]: # (RETURN_TYPE_KIND:object)
185+
186+
[//]: # (RETURN_TYPE_DOC:ApiResponseOptionsChainRealtime.md)
187+
188+
[//]: # (OPERATION:get_option_strikes_realtime_v2)
189+
190+
[//]: # (ENDPOINT:/options/strikes/{symbol}/{strike}/realtime)
191+
192+
[//]: # (DOCUMENT_LINK:OptionsApi.md#get_option_strikes_realtime)
193+
194+
## **get_option_strikes_realtime**
195+
196+
[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/python/get_option_strikes_realtime_v2)
197+
198+
[//]: # (START_OVERVIEW)
199+
200+
> ApiResponseOptionsChainRealtime get_option_strikes_realtime(symbol, strike)
201+
202+
#### Option Strikes Realtime
203+
204+
205+
Returns all realtime options contracts and their prices for the given symbol and strike.
206+
207+
[//]: # (END_OVERVIEW)
208+
209+
### Example
210+
[//]: # (START_CODE_EXAMPLE)
211+
212+
```python
213+
from __future__ import print_function
214+
import time
215+
import intrinio_sdk as intrinio
216+
from intrinio_sdk.rest import ApiException
217+
218+
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
219+
intrinio.ApiClient().allow_retries(True)
220+
221+
symbol = 'MSFT'
222+
strike = 95
223+
224+
response = intrinio.OptionsApi().get_option_strikes_realtime(symbol, strike)
225+
print(response)
226+
227+
# Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict)
228+
```
229+
[//]: # (END_CODE_EXAMPLE)
230+
231+
[//]: # (START_DEFINITION)
232+
233+
### Parameters
234+
235+
[//]: # (START_PARAMETERS)
236+
237+
238+
Name | Type | Description | Notes
239+
------------- | ------------- | ------------- | -------------
240+
**symbol** | str| The option symbol, corresponding to the underlying security. | &nbsp;
241+
**strike** | float| The strike price of the option contract. This will return options contracts with strike price equal to this price. | &nbsp;
242+
<br/>
243+
244+
[//]: # (END_PARAMETERS)
245+
246+
### Return type
247+
248+
[**ApiResponseOptionsChainRealtime**](ApiResponseOptionsChainRealtime.md)
249+
250+
[//]: # (END_OPERATION)
251+
252+
174253
[//]: # (START_OPERATION)
175254

176255
[//]: # (CLASS:OptionsApi)
@@ -996,3 +1075,78 @@ Name | Type | Description | Notes
9961075

9971076
[//]: # (END_OPERATION)
9981077

1078+
1079+
[//]: # (START_OPERATION)
1080+
1081+
[//]: # (CLASS:OptionsApi)
1082+
1083+
[//]: # (METHOD:get_unusual_activity_universal)
1084+
1085+
[//]: # (RETURN_TYPE:ApiResponseOptionsUnusualActivity)
1086+
1087+
[//]: # (RETURN_TYPE_KIND:object)
1088+
1089+
[//]: # (RETURN_TYPE_DOC:ApiResponseOptionsUnusualActivity.md)
1090+
1091+
[//]: # (OPERATION:get_unusual_activity_universal_v2)
1092+
1093+
[//]: # (ENDPOINT:/options/unusual_activity)
1094+
1095+
[//]: # (DOCUMENT_LINK:OptionsApi.md#get_unusual_activity_universal)
1096+
1097+
## **get_unusual_activity_universal**
1098+
1099+
[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/python/get_unusual_activity_universal_v2)
1100+
1101+
[//]: # (START_OVERVIEW)
1102+
1103+
> ApiResponseOptionsUnusualActivity get_unusual_activity_universal(source=source)
1104+
1105+
#### Options Unusual Activity Universal
1106+
1107+
1108+
Returns nusual trades for all underlying security symbols.
1109+
1110+
[//]: # (END_OVERVIEW)
1111+
1112+
### Example
1113+
[//]: # (START_CODE_EXAMPLE)
1114+
1115+
```python
1116+
from __future__ import print_function
1117+
import time
1118+
import intrinio_sdk as intrinio
1119+
from intrinio_sdk.rest import ApiException
1120+
1121+
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
1122+
intrinio.ApiClient().allow_retries(True)
1123+
1124+
source = ''
1125+
1126+
response = intrinio.OptionsApi().get_unusual_activity_universal(source=source)
1127+
print(response)
1128+
1129+
# Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict)
1130+
```
1131+
[//]: # (END_CODE_EXAMPLE)
1132+
1133+
[//]: # (START_DEFINITION)
1134+
1135+
### Parameters
1136+
1137+
[//]: # (START_PARAMETERS)
1138+
1139+
1140+
Name | Type | Description | Notes
1141+
------------- | ------------- | ------------- | -------------
1142+
**source** | str| Realtime or 15-minute delayed contracts. | [optional] &nbsp;
1143+
<br/>
1144+
1145+
[//]: # (END_PARAMETERS)
1146+
1147+
### Return type
1148+
1149+
[**ApiResponseOptionsUnusualActivity**](ApiResponseOptionsUnusualActivity.md)
1150+
1151+
[//]: # (END_OPERATION)
1152+

intrinio_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
99
10-
OpenAPI spec version: 2.25.0
10+
OpenAPI spec version: 2.25.6
1111
1212
Generated by: https://github.com/swagger-api/swagger-codegen.git
1313
"""

intrinio_sdk/api/bulk_downloads_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
77
8-
OpenAPI spec version: 2.25.0
8+
OpenAPI spec version: 2.25.6
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

intrinio_sdk/api/company_api.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
77
8-
OpenAPI spec version: 2.25.0
8+
OpenAPI spec version: 2.25.6
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""
@@ -51,6 +51,7 @@ def get_all_companies(self, **kwargs): # noqa: E501
5151
:param str industry_group: Return companies in the given industry group
5252
:param bool has_fundamentals: Return only companies that have fundamentals when true
5353
:param bool has_stock_prices: Return only companies that have stock prices when true
54+
:param bool thea_enabled: Return companies whose have been read by our Thea NLP and are ready for our company answers endpoint
5455
:param int page_size: The number of results to return
5556
:param str next_page: Gets the next page of data from a previous API call
5657
:return: ApiResponseCompanies
@@ -82,14 +83,15 @@ def get_all_companies_with_http_info(self, **kwargs): # noqa: E501
8283
:param str industry_group: Return companies in the given industry group
8384
:param bool has_fundamentals: Return only companies that have fundamentals when true
8485
:param bool has_stock_prices: Return only companies that have stock prices when true
86+
:param bool thea_enabled: Return companies whose have been read by our Thea NLP and are ready for our company answers endpoint
8587
:param int page_size: The number of results to return
8688
:param str next_page: Gets the next page of data from a previous API call
8789
:return: ApiResponseCompanies
8890
If the method is called asynchronously,
8991
returns the request thread.
9092
"""
9193

92-
all_params = ['latest_filing_date', 'sic', 'template', 'sector', 'industry_category', 'industry_group', 'has_fundamentals', 'has_stock_prices', 'page_size', 'next_page'] # noqa: E501
94+
all_params = ['latest_filing_date', 'sic', 'template', 'sector', 'industry_category', 'industry_group', 'has_fundamentals', 'has_stock_prices', 'thea_enabled', 'page_size', 'next_page'] # noqa: E501
9395
all_params.append('async')
9496
all_params.append('_return_http_data_only')
9597
all_params.append('_preload_content')
@@ -128,6 +130,8 @@ def get_all_companies_with_http_info(self, **kwargs): # noqa: E501
128130
query_params.append(('has_fundamentals', params['has_fundamentals'])) # noqa: E501
129131
if 'has_stock_prices' in params:
130132
query_params.append(('has_stock_prices', params['has_stock_prices'])) # noqa: E501
133+
if 'thea_enabled' in params:
134+
query_params.append(('thea_enabled', params['thea_enabled'])) # noqa: E501
131135
if 'page_size' in params:
132136
query_params.append(('page_size', params['page_size'])) # noqa: E501
133137
if 'next_page' in params:

intrinio_sdk/api/data_point_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
77
8-
OpenAPI spec version: 2.25.0
8+
OpenAPI spec version: 2.25.6
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

intrinio_sdk/api/data_tag_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
77
8-
OpenAPI spec version: 2.25.0
8+
OpenAPI spec version: 2.25.6
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

intrinio_sdk/api/et_fs_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
77
8-
OpenAPI spec version: 2.25.0
8+
OpenAPI spec version: 2.25.6
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

0 commit comments

Comments
 (0)