Skip to content

Commit d58b18f

Browse files
no release notes for this build
1 parent 31647dc commit d58b18f

File tree

610 files changed

+2568
-608
lines changed

Some content is hidden

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

610 files changed

+2568
-608
lines changed

README.md

Lines changed: 5 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.52.1
8-
- Package version: 6.26.7
7+
- API version: 2.52.5
8+
- Package version: 6.26.8
99

1010

1111
## Requirements.
@@ -315,6 +315,7 @@ Class | Method | HTTP request | Description
315315
*ZacksApi* | [**get_zacks_institutional_holding_owners**](docs/ZacksApi.md#get_zacks_institutional_holding_owners) | **GET** /zacks/institutional_holdings/owners | Zacks Institutional Holding Owners
316316
*ZacksApi* | [**get_zacks_institutional_holdings**](docs/ZacksApi.md#get_zacks_institutional_holdings) | **GET** /zacks/institutional_holdings | Zacks Institutional Holdings
317317
*ZacksApi* | [**get_zacks_long_term_growth_rates**](docs/ZacksApi.md#get_zacks_long_term_growth_rates) | **GET** /zacks/long_term_growth_rates | Zacks Long Term Growth Rates
318+
*ZacksApi* | [**get_zacks_sales_estimates**](docs/ZacksApi.md#get_zacks_sales_estimates) | **GET** /zacks/sales_estimates | Zacks Sales Estimates
318319
*ZacksApi* | [**get_zacks_sales_surprises**](docs/ZacksApi.md#get_zacks_sales_surprises) | **GET** /zacks/sales_surprises | Zacks Sales Surprises
319320
*ZacksApi* | [**get_zacks_target_price_consensuses**](docs/ZacksApi.md#get_zacks_target_price_consensuses) | **GET** /zacks/target_price_consensuses | Zacks Target Price Consensuses
320321

@@ -444,6 +445,7 @@ Class | Method | HTTP request | Description
444445
- [ApiResponseZacksInstitutionalHoldingOwners](docs/ApiResponseZacksInstitutionalHoldingOwners.md)
445446
- [ApiResponseZacksInstitutionalHoldings](docs/ApiResponseZacksInstitutionalHoldings.md)
446447
- [ApiResponseZacksLongTermGrowthRates](docs/ApiResponseZacksLongTermGrowthRates.md)
448+
- [ApiResponseZacksSalesEstimates](docs/ApiResponseZacksSalesEstimates.md)
447449
- [ApiResponseZacksSalesSurprises](docs/ApiResponseZacksSalesSurprises.md)
448450
- [ApiResponseZacksTargetPriceConsensuses](docs/ApiResponseZacksTargetPriceConsensuses.md)
449451
- [AverageDailyTradingVolumeTechnicalValue](docs/AverageDailyTradingVolumeTechnicalValue.md)
@@ -596,6 +598,7 @@ Class | Method | HTTP request | Description
596598
- [ZacksInstitutionalHoldingOwnerDetail](docs/ZacksInstitutionalHoldingOwnerDetail.md)
597599
- [ZacksInstitutionalHoldingOwnerSummary](docs/ZacksInstitutionalHoldingOwnerSummary.md)
598600
- [ZacksLongTermGrowthRate](docs/ZacksLongTermGrowthRate.md)
601+
- [ZacksSalesEstimate](docs/ZacksSalesEstimate.md)
599602
- [ZacksSalesSurprise](docs/ZacksSalesSurprise.md)
600603
- [ZacksSalesSurpriseSummary](docs/ZacksSalesSurpriseSummary.md)
601604
- [ZacksTargetPriceConsensus](docs/ZacksTargetPriceConsensus.md)
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
3+
[//]: # (CLASS:ApiResponseZacksSalesEstimates)
4+
5+
[//]: # (KIND:object)
6+
7+
### ApiResponseZacksSalesEstimates
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**estimates** | [**list[ZacksSalesEstimate]**](ZacksSalesEstimate.md) | Zacks Sales estimate data for a given date range  
16+
**next_page** | str | The token required to request the next page of the data. If null, no further results are available.  
17+
18+
[//]: # (END_DEFINITION)
19+
20+
21+
[//]: # (CONTAINED_CLASS:ZacksSalesEstimate)
22+
23+
24+

docs/ZacksApi.md

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Method | HTTP request | Description
1313
[**get_zacks_institutional_holding_owners**](ZacksApi.md#get_zacks_institutional_holding_owners) | **GET** /zacks/institutional_holdings/owners | Zacks Institutional Holding Owners
1414
[**get_zacks_institutional_holdings**](ZacksApi.md#get_zacks_institutional_holdings) | **GET** /zacks/institutional_holdings | Zacks Institutional Holdings
1515
[**get_zacks_long_term_growth_rates**](ZacksApi.md#get_zacks_long_term_growth_rates) | **GET** /zacks/long_term_growth_rates | Zacks Long Term Growth Rates
16+
[**get_zacks_sales_estimates**](ZacksApi.md#get_zacks_sales_estimates) | **GET** /zacks/sales_estimates | Zacks Sales Estimates
1617
[**get_zacks_sales_surprises**](ZacksApi.md#get_zacks_sales_surprises) | **GET** /zacks/sales_surprises | Zacks Sales Surprises
1718
[**get_zacks_target_price_consensuses**](ZacksApi.md#get_zacks_target_price_consensuses) | **GET** /zacks/target_price_consensuses | Zacks Target Price Consensuses
1819

@@ -795,6 +796,99 @@ Name | Type | Description | Notes
795796
[//]: # (END_OPERATION)
796797

797798

799+
[//]: # (START_OPERATION)
800+
801+
[//]: # (CLASS:ZacksApi)
802+
803+
[//]: # (METHOD:get_zacks_sales_estimates)
804+
805+
[//]: # (RETURN_TYPE:ApiResponseZacksSalesEstimates)
806+
807+
[//]: # (RETURN_TYPE_KIND:object)
808+
809+
[//]: # (RETURN_TYPE_DOC:ApiResponseZacksSalesEstimates.md)
810+
811+
[//]: # (OPERATION:get_zacks_sales_estimates_v2)
812+
813+
[//]: # (ENDPOINT:/zacks/sales_estimates)
814+
815+
[//]: # (DOCUMENT_LINK:ZacksApi.md#get_zacks_sales_estimates)
816+
817+
## **get_zacks_sales_estimates**
818+
819+
[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/python/get_zacks_sales_estimates_v2)
820+
821+
[//]: # (START_OVERVIEW)
822+
823+
> ApiResponseZacksSalesEstimates get_zacks_sales_estimates(identifier=identifier, start_date=start_date, end_date=end_date, fiscal_year=fiscal_year, fiscal_period=fiscal_period, calendar_year=calendar_year, calendar_period=calendar_period, next_page=next_page, page_size=page_size, next_page2=next_page2)
824+
825+
#### Zacks Sales Estimates
826+
827+
828+
This database offers consensus sales estimates for over 5,000 US and Canadian listed companies.
829+
830+
[//]: # (END_OVERVIEW)
831+
832+
### Example
833+
[//]: # (START_CODE_EXAMPLE)
834+
835+
```python
836+
from __future__ import print_function
837+
import time
838+
import intrinio_sdk as intrinio
839+
from intrinio_sdk.rest import ApiException
840+
841+
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
842+
intrinio.ApiClient().allow_retries(True)
843+
844+
identifier = 'AAPL'
845+
start_date = ''
846+
end_date = ''
847+
fiscal_year = ''
848+
fiscal_period = ''
849+
calendar_year = ''
850+
calendar_period = ''
851+
next_page = ''
852+
page_size = 100
853+
next_page2 = ''
854+
855+
response = intrinio.ZacksApi().get_zacks_sales_estimates(identifier=identifier, start_date=start_date, end_date=end_date, fiscal_year=fiscal_year, fiscal_period=fiscal_period, calendar_year=calendar_year, calendar_period=calendar_period, next_page=next_page, page_size=page_size, next_page2=next_page2)
856+
print(response)
857+
858+
# Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict)
859+
```
860+
[//]: # (END_CODE_EXAMPLE)
861+
862+
[//]: # (START_DEFINITION)
863+
864+
### Parameters
865+
866+
[//]: # (START_PARAMETERS)
867+
868+
869+
Name | Type | Description | Notes
870+
------------- | ------------- | ------------- | -------------
871+
**identifier** | str| A Company identifier (Ticker, CIK, LEI, Intrinio ID) | [optional]  
872+
**start_date** | date| Limit Sales estimates to those on or after this date | [optional]  
873+
**end_date** | date| Limit Sales estimates to those on or before this date | [optional]  
874+
**fiscal_year** | int| Only for the given fiscal year | [optional]  
875+
**fiscal_period** | str| The fiscal period | [optional]  
876+
**calendar_year** | int| Only for the given calendar year | [optional]  
877+
**calendar_period** | str| The calendar period | [optional]  
878+
**next_page** | str| Gets the next page of data from a previous API call | [optional]  
879+
**page_size** | int| The number of results to return | [optional] [default to 100]  
880+
**next_page2** | str| Gets the next page of data from a previous API call | [optional]  
881+
<br/>
882+
883+
[//]: # (END_PARAMETERS)
884+
885+
### Return type
886+
887+
[**ApiResponseZacksSalesEstimates**](ApiResponseZacksSalesEstimates.md)
888+
889+
[//]: # (END_OPERATION)
890+
891+
798892
[//]: # (START_OPERATION)
799893

800894
[//]: # (CLASS:ZacksApi)

docs/ZacksSalesEstimate.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
3+
[//]: # (CLASS:ZacksSalesEstimate)
4+
5+
[//]: # (KIND:object)
6+
7+
### ZacksSalesEstimate
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**company** | [**CompanySummary**](CompanySummary.md) | &nbsp;
16+
**date** | date | The period end date &nbsp;
17+
**fiscal_year** | int | The company’s fiscal year for the reported period &nbsp;
18+
**fiscal_period** | str | The company’s fiscal quarter for the reported period &nbsp;
19+
**calendar_year** | int | The closest calendar year for the company’s fiscal year &nbsp;
20+
**calendar_period** | str | The closest calendar quarter for the company’s fiscal year &nbsp;
21+
**count** | int | The number of estimates for the period &nbsp;
22+
**mean** | float | The sales estimate mean estimate for the period &nbsp;
23+
**median** | float | The sales estimate median estimate for the period &nbsp;
24+
**high** | float | The sales estimate high estimate for the period &nbsp;
25+
**low** | float | The sales estimate low estimate for the period &nbsp;
26+
**standard_deviation** | float | The sales estimate standard deviation estimate for the period &nbsp;
27+
**analyst_revisions_percent_change_1w** | float | The analyst revisions percent change in estimate for the period of 1 week. &nbsp;
28+
**analyst_revisions_up_1w** | float | The analyst revisions going up for the period of 1 week. &nbsp;
29+
**analyst_revisions_down_1w** | float | The analyst revisions going down for the period of 1 week. &nbsp;
30+
**analyst_revisions_percent_change_1m** | float | The analyst revisions percent change in estimate for the period of 1 month. &nbsp;
31+
**analyst_revisions_up_1m** | float | The analyst revisions going up for the period of 1 month. &nbsp;
32+
**analyst_revisions_down_1m** | float | The analyst revisions going down for the period of 1 month. &nbsp;
33+
**analyst_revisions_percent_change_3m** | float | The analyst revisions percent change in estimate for the period of 3 months. &nbsp;
34+
**analyst_revisions_up_3m** | float | The analyst revisions going up for the period of 3 months. &nbsp;
35+
**analyst_revisions_down_3m** | float | The analyst revisions going down for the period of 3 months. &nbsp;
36+
37+
[//]: # (END_DEFINITION)
38+
39+
40+
[//]: # (CONTAINED_CLASS:CompanySummary)
41+
42+
43+

intrinio_sdk/__init__.py

Lines changed: 3 additions & 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.52.1
10+
OpenAPI spec version: 2.52.5
1111
1212
Generated by: https://github.com/swagger-api/swagger-codegen.git
1313
"""
@@ -164,6 +164,7 @@
164164
from intrinio_sdk.models.api_response_zacks_institutional_holding_owners import ApiResponseZacksInstitutionalHoldingOwners
165165
from intrinio_sdk.models.api_response_zacks_institutional_holdings import ApiResponseZacksInstitutionalHoldings
166166
from intrinio_sdk.models.api_response_zacks_long_term_growth_rates import ApiResponseZacksLongTermGrowthRates
167+
from intrinio_sdk.models.api_response_zacks_sales_estimates import ApiResponseZacksSalesEstimates
167168
from intrinio_sdk.models.api_response_zacks_sales_surprises import ApiResponseZacksSalesSurprises
168169
from intrinio_sdk.models.api_response_zacks_target_price_consensuses import ApiResponseZacksTargetPriceConsensuses
169170
from intrinio_sdk.models.average_daily_trading_volume_technical_value import AverageDailyTradingVolumeTechnicalValue
@@ -316,6 +317,7 @@
316317
from intrinio_sdk.models.zacks_institutional_holding_owner_detail import ZacksInstitutionalHoldingOwnerDetail
317318
from intrinio_sdk.models.zacks_institutional_holding_owner_summary import ZacksInstitutionalHoldingOwnerSummary
318319
from intrinio_sdk.models.zacks_long_term_growth_rate import ZacksLongTermGrowthRate
320+
from intrinio_sdk.models.zacks_sales_estimate import ZacksSalesEstimate
319321
from intrinio_sdk.models.zacks_sales_surprise import ZacksSalesSurprise
320322
from intrinio_sdk.models.zacks_sales_surprise_summary import ZacksSalesSurpriseSummary
321323
from intrinio_sdk.models.zacks_target_price_consensus import ZacksTargetPriceConsensus

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

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

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

0 commit comments

Comments
 (0)