Skip to content

Commit ea3d506

Browse files
No release notes for this build
1 parent 2ea84c1 commit ea3d506

File tree

664 files changed

+870
-672
lines changed

Some content is hidden

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

664 files changed

+870
-672
lines changed

README.md

Lines changed: 2 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.76.3
8-
- Package version: 6.34.0
7+
- API version: 2.80.1
8+
- Package version: 6.35.0
99

1010

1111
## Requirements.

docs/CompanyApi.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ Name | Type | Description | Notes
808808

809809
[//]: # (START_OVERVIEW)
810810

811-
> ApiResponseCompanyFundamentals get_company_fundamentals(identifier, filed_after=filed_after, filed_before=filed_before, reported_only=reported_only, fiscal_year=fiscal_year, statement_code=statement_code, type=type, start_date=start_date, end_date=end_date, updated_after=updated_after, updated_before=updated_before, page_size=page_size, next_page=next_page)
811+
> ApiResponseCompanyFundamentals get_company_fundamentals(identifier, filed_after=filed_after, filed_before=filed_before, reported_only=reported_only, fiscal_year=fiscal_year, statement_code=statement_code, type=type, fundamental_type=fundamental_type, start_date=start_date, end_date=end_date, updated_after=updated_after, latest_only=latest_only, updated_before=updated_before, page_size=page_size, next_page=next_page)
812812
813813
#### All Fundamentals by Company
814814

@@ -836,14 +836,16 @@ reported_only = False
836836
fiscal_year = ''
837837
statement_code = ''
838838
type = ''
839+
fundamental_type = ''
839840
start_date = ''
840841
end_date = ''
841842
updated_after = '2022-12-01'
843+
latest_only = True
842844
updated_before = '2022-12-01'
843845
page_size = 100
844846
next_page = ''
845847

846-
response = intrinio.CompanyApi().get_company_fundamentals(identifier, filed_after=filed_after, filed_before=filed_before, reported_only=reported_only, fiscal_year=fiscal_year, statement_code=statement_code, type=type, start_date=start_date, end_date=end_date, updated_after=updated_after, updated_before=updated_before, page_size=page_size, next_page=next_page)
848+
response = intrinio.CompanyApi().get_company_fundamentals(identifier, filed_after=filed_after, filed_before=filed_before, reported_only=reported_only, fiscal_year=fiscal_year, statement_code=statement_code, type=type, fundamental_type=fundamental_type, start_date=start_date, end_date=end_date, updated_after=updated_after, latest_only=latest_only, updated_before=updated_before, page_size=page_size, next_page=next_page)
847849
print(response)
848850

849851
# Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict)
@@ -866,9 +868,11 @@ Name | Type | Description | Notes
866868
**fiscal_year** | int| Only for the given fiscal year | [optional]  
867869
**statement_code** | str| Only of the given statement code | [optional]  
868870
**type** | str| Only of the given type | [optional]  
871+
**fundamental_type** | str| Only of the given fundamental type | [optional]  
869872
**start_date** | date| Only on or after the given date | [optional]  
870873
**end_date** | date| Only on or before the given date | [optional]  
871874
**updated_after** | date| Only include fundamentals where it was updated after this date. | [optional]  
875+
**latest_only** | bool| Only the most-recently reported fundamental for the period | [optional]  
872876
**updated_before** | date| Only include fundamentals where it was updated before this date. | [optional]  
873877
**page_size** | int| The number of results to return | [optional] [default to 100]  
874878
**next_page** | str| Gets the next page of data from a previous API call | [optional]  

docs/SecuritySummary.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ Name | Type | Description
1414
------------ | ------------- | -------------
1515
**id** | str | The Intrinio ID for Security  
1616
**company_id** | str | The Intrinio ID for the Company for which the Security is issued  
17+
**exchange** | str | The exchange's MIC  
18+
**exchange_mic** | str | The security's exchange MIC  
19+
**stock_exchange_id** | str | The exchange's Intrinio ID  
1720
**name** | str | The name of the Security  
1821
**code** | str | A 2-3 digit code classifying the Security (<a href=\"https://docs.intrinio.com/documentation/security_codes\" target=\"_blank\">reference</a>)  
1922
**currency** | str | The currency in which the Security is traded on the exchange  

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.76.3
10+
OpenAPI spec version: 2.80.1
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.76.3
8+
OpenAPI spec version: 2.80.1
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

intrinio_sdk/api/company_api.py

Lines changed: 10 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.76.3
8+
OpenAPI spec version: 2.80.1
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""
@@ -1075,9 +1075,11 @@ def get_company_fundamentals(self, identifier, **kwargs): # noqa: E501
10751075
:param int fiscal_year: Only for the given fiscal year
10761076
:param str statement_code: Only of the given statement code
10771077
:param str type: Only of the given type
1078+
:param str fundamental_type: Only of the given fundamental type
10781079
:param date start_date: Only on or after the given date
10791080
:param date end_date: Only on or before the given date
10801081
:param date updated_after: Only include fundamentals where it was updated after this date.
1082+
:param bool latest_only: Only the most-recently reported fundamental for the period
10811083
:param date updated_before: Only include fundamentals where it was updated before this date.
10821084
:param int page_size: The number of results to return
10831085
:param str next_page: Gets the next page of data from a previous API call
@@ -1109,9 +1111,11 @@ def get_company_fundamentals_with_http_info(self, identifier, **kwargs): # noqa
11091111
:param int fiscal_year: Only for the given fiscal year
11101112
:param str statement_code: Only of the given statement code
11111113
:param str type: Only of the given type
1114+
:param str fundamental_type: Only of the given fundamental type
11121115
:param date start_date: Only on or after the given date
11131116
:param date end_date: Only on or before the given date
11141117
:param date updated_after: Only include fundamentals where it was updated after this date.
1118+
:param bool latest_only: Only the most-recently reported fundamental for the period
11151119
:param date updated_before: Only include fundamentals where it was updated before this date.
11161120
:param int page_size: The number of results to return
11171121
:param str next_page: Gets the next page of data from a previous API call
@@ -1120,7 +1124,7 @@ def get_company_fundamentals_with_http_info(self, identifier, **kwargs): # noqa
11201124
returns the request thread.
11211125
"""
11221126

1123-
all_params = ['identifier', 'filed_after', 'filed_before', 'reported_only', 'fiscal_year', 'statement_code', 'type', 'start_date', 'end_date', 'updated_after', 'updated_before', 'page_size', 'next_page'] # noqa: E501
1127+
all_params = ['identifier', 'filed_after', 'filed_before', 'reported_only', 'fiscal_year', 'statement_code', 'type', 'fundamental_type', 'start_date', 'end_date', 'updated_after', 'latest_only', 'updated_before', 'page_size', 'next_page'] # noqa: E501
11241128
all_params.append('async')
11251129
all_params.append('_return_http_data_only')
11261130
all_params.append('_preload_content')
@@ -1161,12 +1165,16 @@ def get_company_fundamentals_with_http_info(self, identifier, **kwargs): # noqa
11611165
query_params.append(('statement_code', params['statement_code'])) # noqa: E501
11621166
if 'type' in params:
11631167
query_params.append(('type', params['type'])) # noqa: E501
1168+
if 'fundamental_type' in params:
1169+
query_params.append(('fundamental_type', params['fundamental_type'])) # noqa: E501
11641170
if 'start_date' in params:
11651171
query_params.append(('start_date', params['start_date'])) # noqa: E501
11661172
if 'end_date' in params:
11671173
query_params.append(('end_date', params['end_date'])) # noqa: E501
11681174
if 'updated_after' in params:
11691175
query_params.append(('updated_after', params['updated_after'])) # noqa: E501
1176+
if 'latest_only' in params:
1177+
query_params.append(('latest_only', params['latest_only'])) # noqa: E501
11701178
if 'updated_before' in params:
11711179
query_params.append(('updated_before', params['updated_before'])) # noqa: E501
11721180
if 'page_size' 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.76.3
8+
OpenAPI spec version: 2.80.1
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.76.3
8+
OpenAPI spec version: 2.80.1
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

intrinio_sdk/api/esg_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.76.3
8+
OpenAPI spec version: 2.80.1
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.76.3
8+
OpenAPI spec version: 2.80.1
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

0 commit comments

Comments
 (0)