Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnyder-intrinio committed Nov 21, 2024
1 parent f3683bf commit e1ddcff
Show file tree
Hide file tree
Showing 23 changed files with 191 additions and 339 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,6 @@ Class | Method | HTTP request | Description
- [FundamentalSummary](docs/FundamentalSummary.md)
- [HistoricalData](docs/HistoricalData.md)
- [IchimokuKinkoHyoTechnicalValue](docs/IchimokuKinkoHyoTechnicalValue.md)
- [IndexConstituents](docs/IndexConstituents.md)
- [InsiderTransaction](docs/InsiderTransaction.md)
- [InsiderTransactionFiling](docs/InsiderTransactionFiling.md)
- [InstitutionalHolding](docs/InstitutionalHolding.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/ApiResponseIndexConstituents.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ Name | Type | Description
------------ | ------------- | -------------
**index** | [**ApiResponseIndex**](ApiResponseIndex.md) | The index  
**date** | date | The date when an update was last received for the index constituents  
**constituents** | [**IndexConstituents**](IndexConstituents.md) |  
**constituents** | [**list[SecuritySummary]**](SecuritySummary.md) |  

[//]: # (END_DEFINITION)


[//]: # (CONTAINED_CLASS:ApiResponseIndex)


[//]: # (CONTAINED_CLASS:IndexConstituents)
[//]: # (CONTAINED_CLASS:SecuritySummary)



26 changes: 13 additions & 13 deletions docs/CompanyApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,8 @@ from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)

identifier = '$$v2_company_data_point_identifier_default$$'
tag = '$$v2_company_data_point_item_number_default$$'
identifier = 'AAPL'
tag = 'marketcap'

response = intrinio.CompanyApi().get_company_data_point_number(identifier, tag)
print(response)
Expand All @@ -607,8 +607,8 @@ print(response)

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| $$v2_company_data_point_identifier_description$$ |  
**tag** | str| $$v2_company_data_point_item_description$$ |  
**identifier** | str| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |  
**tag** | str| An Intrinio data tag ID or code (<a href='https://data.intrinio.com/data-tags'>reference</a>) |  
<br/>

[//]: # (END_PARAMETERS)
Expand Down Expand Up @@ -665,8 +665,8 @@ from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)

identifier = '$$v2_company_data_point_identifier_default$$'
tag = '$$v2_company_data_point_item_text_default$$'
identifier = 'AAPL'
tag = 'ceo'

response = intrinio.CompanyApi().get_company_data_point_text(identifier, tag)
print(response)
Expand All @@ -684,8 +684,8 @@ print(response)

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| $$v2_company_data_point_identifier_description$$ | &nbsp;
**tag** | str| $$v2_company_data_point_item_description$$ | &nbsp;
**identifier** | str| A Company identifier (Ticker, CIK, LEI, Intrinio ID) | &nbsp;
**tag** | str| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
<br/>

[//]: # (END_PARAMETERS)
Expand Down Expand Up @@ -912,7 +912,7 @@ Name | Type | Description | Notes
#### Historical Data for Company


$$v2_company_historical_data_description$$
Returns historical values for the given `tag` and the Company with the given `identifier`

[//]: # (END_OVERVIEW)

Expand All @@ -928,8 +928,8 @@ from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)

identifier = '$$v2_company_historical_data_identifier_default$$'
tag = '$$v2_company_historical_data_item_default$$'
identifier = 'AAPL'
tag = 'marketcap'
frequency = 'daily'
type = ''
start_date = '2018-01-01'
Expand All @@ -954,8 +954,8 @@ print(response)

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| $$v2_company_historical_data_identifier_description$$ | &nbsp;
**tag** | str| $$v2_company_historical_data_item_description$$ | &nbsp;
**identifier** | str| A Company identifier (Ticker, CIK, LEI, Intrinio ID) | &nbsp;
**tag** | str| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
**frequency** | str| Return historical data in the given frequency | [optional] [default to daily] &nbsp;
**type** | str| Return historical data for given fiscal period type | [optional] &nbsp;
**start_date** | date| Return historical data on or after this date | [optional] &nbsp;
Expand Down
20 changes: 10 additions & 10 deletions docs/DataPointApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Method | HTTP request | Description
#### Data Point (Number)


$$v2_data_point_number_description$$
Returns a numeric value for the given `tag` and the entity with the given `identifier`

[//]: # (END_OVERVIEW)

Expand All @@ -54,8 +54,8 @@ from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)

identifier = '$$v2_data_point_identifier_default$$'
tag = '$$v2_data_point_item_number_default$$'
identifier = 'AAPL'
tag = 'marketcap'

response = intrinio.DataPointApi().get_data_point_number(identifier, tag)
print(response)
Expand All @@ -73,8 +73,8 @@ print(response)

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| $$v2_data_point_identifier_description$$ | &nbsp;
**tag** | str| $$v2_data_point_item_description$$ | &nbsp;
**identifier** | str| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
**tag** | str| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
<br/>

[//]: # (END_PARAMETERS)
Expand Down Expand Up @@ -115,7 +115,7 @@ Name | Type | Description | Notes
#### Data Point (Text)


$$v2_data_point_text_description$$
Returns a text value for the given `tag` for the Security with the given `identifier`

[//]: # (END_OVERVIEW)

Expand All @@ -131,8 +131,8 @@ from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)

identifier = '$$v2_data_point_identifier_default$$'
tag = '$$v2_data_point_item_text_default$$'
identifier = 'AAPL'
tag = 'ceo'

response = intrinio.DataPointApi().get_data_point_text(identifier, tag)
print(response)
Expand All @@ -150,8 +150,8 @@ print(response)

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| $$v2_data_point_identifier_description$$ | &nbsp;
**tag** | str| $$v2_data_point_item_description$$ | &nbsp;
**identifier** | str| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
**tag** | str| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
<br/>

[//]: # (END_PARAMETERS)
Expand Down
4 changes: 2 additions & 2 deletions docs/FundamentalsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)

id = 'AAPL-income_statement-2020-FY'
tag = '$$v2_data_point_item_text_default$$'
tag = 'ceo'

response = intrinio.FundamentalsApi().get_fundamental_standardized_financials_dimensions(id, tag)
print(response)
Expand All @@ -402,7 +402,7 @@ print(response)
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | str| The Intrinio ID or lookup code (ticker-statement-year-period) for the Fundamental | &nbsp;
**tag** | str| $$v2_data_point_item_description$$ | &nbsp;
**tag** | str| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
<br/>

[//]: # (END_PARAMETERS)
Expand Down
10 changes: 5 additions & 5 deletions docs/HistoricalDataApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Method | HTTP request | Description
#### Historical Data


$$v2_historical_data_description$$
Returns historical values for the given `tag` and the entity represented by the given `identifier`

[//]: # (END_OVERVIEW)

Expand All @@ -53,8 +53,8 @@ from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)

identifier = '$$v2_historical_data_identifier_default$$'
tag = '$$v2_historical_data_item_default$$'
identifier = 'AAPL'
tag = 'marketcap'
frequency = 'daily'
type = ''
start_date = '2015-01-01'
Expand All @@ -79,8 +79,8 @@ print(response)

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| $$v2_historical_data_identifier_description$$ | &nbsp;
**tag** | str| $$v2_historical_data_item_description$$ | &nbsp;
**identifier** | str| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
**tag** | str| An Intrinio data tag ID or code (&lt;a href&#x3D;&#39;https://data.intrinio.com/data-tags&#39;&gt;reference&lt;/a&gt;) | &nbsp;
**frequency** | str| Return historical data in the given frequency | [optional] [default to daily] &nbsp;
**type** | str| Filter by type, when applicable | [optional] &nbsp;
**start_date** | date| Get historical data on or after this date | [optional] &nbsp;
Expand Down
19 changes: 0 additions & 19 deletions docs/IndexConstituents.md

This file was deleted.

Loading

0 comments on commit e1ddcff

Please sign in to comment.