Skip to content

Commit e1ddcff

Browse files
No release notes for this build
1 parent f3683bf commit e1ddcff

23 files changed

+191
-339
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,6 @@ Class | Method | HTTP request | Description
534534
- [FundamentalSummary](docs/FundamentalSummary.md)
535535
- [HistoricalData](docs/HistoricalData.md)
536536
- [IchimokuKinkoHyoTechnicalValue](docs/IchimokuKinkoHyoTechnicalValue.md)
537-
- [IndexConstituents](docs/IndexConstituents.md)
538537
- [InsiderTransaction](docs/InsiderTransaction.md)
539538
- [InsiderTransactionFiling](docs/InsiderTransactionFiling.md)
540539
- [InstitutionalHolding](docs/InstitutionalHolding.md)

docs/ApiResponseIndexConstituents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ Name | Type | Description
1414
------------ | ------------- | -------------
1515
**index** | [**ApiResponseIndex**](ApiResponseIndex.md) | The index  
1616
**date** | date | The date when an update was last received for the index constituents  
17-
**constituents** | [**IndexConstituents**](IndexConstituents.md) |  
17+
**constituents** | [**list[SecuritySummary]**](SecuritySummary.md) |  
1818

1919
[//]: # (END_DEFINITION)
2020

2121

2222
[//]: # (CONTAINED_CLASS:ApiResponseIndex)
2323

2424

25-
[//]: # (CONTAINED_CLASS:IndexConstituents)
25+
[//]: # (CONTAINED_CLASS:SecuritySummary)
2626

2727

2828

docs/CompanyApi.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -588,8 +588,8 @@ from intrinio_sdk.rest import ApiException
588588
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
589589
intrinio.ApiClient().allow_retries(True)
590590

591-
identifier = '$$v2_company_data_point_identifier_default$$'
592-
tag = '$$v2_company_data_point_item_number_default$$'
591+
identifier = 'AAPL'
592+
tag = 'marketcap'
593593

594594
response = intrinio.CompanyApi().get_company_data_point_number(identifier, tag)
595595
print(response)
@@ -607,8 +607,8 @@ print(response)
607607

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

614614
[//]: # (END_PARAMETERS)
@@ -665,8 +665,8 @@ from intrinio_sdk.rest import ApiException
665665
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
666666
intrinio.ApiClient().allow_retries(True)
667667

668-
identifier = '$$v2_company_data_point_identifier_default$$'
669-
tag = '$$v2_company_data_point_item_text_default$$'
668+
identifier = 'AAPL'
669+
tag = 'ceo'
670670

671671
response = intrinio.CompanyApi().get_company_data_point_text(identifier, tag)
672672
print(response)
@@ -684,8 +684,8 @@ print(response)
684684

685685
Name | Type | Description | Notes
686686
------------- | ------------- | ------------- | -------------
687-
**identifier** | str| $$v2_company_data_point_identifier_description$$ | &nbsp;
688-
**tag** | str| $$v2_company_data_point_item_description$$ | &nbsp;
687+
**identifier** | str| A Company identifier (Ticker, CIK, LEI, Intrinio ID) | &nbsp;
688+
**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;
689689
<br/>
690690

691691
[//]: # (END_PARAMETERS)
@@ -912,7 +912,7 @@ Name | Type | Description | Notes
912912
#### Historical Data for Company
913913

914914

915-
$$v2_company_historical_data_description$$
915+
Returns historical values for the given `tag` and the Company with the given `identifier`
916916

917917
[//]: # (END_OVERVIEW)
918918

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

931-
identifier = '$$v2_company_historical_data_identifier_default$$'
932-
tag = '$$v2_company_historical_data_item_default$$'
931+
identifier = 'AAPL'
932+
tag = 'marketcap'
933933
frequency = 'daily'
934934
type = ''
935935
start_date = '2018-01-01'
@@ -954,8 +954,8 @@ print(response)
954954

955955
Name | Type | Description | Notes
956956
------------- | ------------- | ------------- | -------------
957-
**identifier** | str| $$v2_company_historical_data_identifier_description$$ | &nbsp;
958-
**tag** | str| $$v2_company_historical_data_item_description$$ | &nbsp;
957+
**identifier** | str| A Company identifier (Ticker, CIK, LEI, Intrinio ID) | &nbsp;
958+
**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;
959959
**frequency** | str| Return historical data in the given frequency | [optional] [default to daily] &nbsp;
960960
**type** | str| Return historical data for given fiscal period type | [optional] &nbsp;
961961
**start_date** | date| Return historical data on or after this date | [optional] &nbsp;

docs/DataPointApi.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Method | HTTP request | Description
3838
#### Data Point (Number)
3939

4040

41-
$$v2_data_point_number_description$$
41+
Returns a numeric value for the given `tag` and the entity with the given `identifier`
4242

4343
[//]: # (END_OVERVIEW)
4444

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

57-
identifier = '$$v2_data_point_identifier_default$$'
58-
tag = '$$v2_data_point_item_number_default$$'
57+
identifier = 'AAPL'
58+
tag = 'marketcap'
5959

6060
response = intrinio.DataPointApi().get_data_point_number(identifier, tag)
6161
print(response)
@@ -73,8 +73,8 @@ print(response)
7373

7474
Name | Type | Description | Notes
7575
------------- | ------------- | ------------- | -------------
76-
**identifier** | str| $$v2_data_point_identifier_description$$ | &nbsp;
77-
**tag** | str| $$v2_data_point_item_description$$ | &nbsp;
76+
**identifier** | str| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
77+
**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;
7878
<br/>
7979

8080
[//]: # (END_PARAMETERS)
@@ -115,7 +115,7 @@ Name | Type | Description | Notes
115115
#### Data Point (Text)
116116

117117

118-
$$v2_data_point_text_description$$
118+
Returns a text value for the given `tag` for the Security with the given `identifier`
119119

120120
[//]: # (END_OVERVIEW)
121121

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

134-
identifier = '$$v2_data_point_identifier_default$$'
135-
tag = '$$v2_data_point_item_text_default$$'
134+
identifier = 'AAPL'
135+
tag = 'ceo'
136136

137137
response = intrinio.DataPointApi().get_data_point_text(identifier, tag)
138138
print(response)
@@ -150,8 +150,8 @@ print(response)
150150

151151
Name | Type | Description | Notes
152152
------------- | ------------- | ------------- | -------------
153-
**identifier** | str| $$v2_data_point_identifier_description$$ | &nbsp;
154-
**tag** | str| $$v2_data_point_item_description$$ | &nbsp;
153+
**identifier** | str| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
154+
**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;
155155
<br/>
156156

157157
[//]: # (END_PARAMETERS)

docs/FundamentalsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ intrinio.ApiClient().set_api_key('YOUR_API_KEY')
383383
intrinio.ApiClient().allow_retries(True)
384384

385385
id = 'AAPL-income_statement-2020-FY'
386-
tag = '$$v2_data_point_item_text_default$$'
386+
tag = 'ceo'
387387

388388
response = intrinio.FundamentalsApi().get_fundamental_standardized_financials_dimensions(id, tag)
389389
print(response)
@@ -402,7 +402,7 @@ print(response)
402402
Name | Type | Description | Notes
403403
------------- | ------------- | ------------- | -------------
404404
**id** | str| The Intrinio ID or lookup code (ticker-statement-year-period) for the Fundamental | &nbsp;
405-
**tag** | str| $$v2_data_point_item_description$$ | &nbsp;
405+
**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;
406406
<br/>
407407

408408
[//]: # (END_PARAMETERS)

docs/HistoricalDataApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Method | HTTP request | Description
3737
#### Historical Data
3838

3939

40-
$$v2_historical_data_description$$
40+
Returns historical values for the given `tag` and the entity represented by the given `identifier`
4141

4242
[//]: # (END_OVERVIEW)
4343

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

56-
identifier = '$$v2_historical_data_identifier_default$$'
57-
tag = '$$v2_historical_data_item_default$$'
56+
identifier = 'AAPL'
57+
tag = 'marketcap'
5858
frequency = 'daily'
5959
type = ''
6060
start_date = '2015-01-01'
@@ -79,8 +79,8 @@ print(response)
7979

8080
Name | Type | Description | Notes
8181
------------- | ------------- | ------------- | -------------
82-
**identifier** | str| $$v2_historical_data_identifier_description$$ | &nbsp;
83-
**tag** | str| $$v2_historical_data_item_description$$ | &nbsp;
82+
**identifier** | str| An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) | &nbsp;
83+
**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;
8484
**frequency** | str| Return historical data in the given frequency | [optional] [default to daily] &nbsp;
8585
**type** | str| Filter by type, when applicable | [optional] &nbsp;
8686
**start_date** | date| Get historical data on or after this date | [optional] &nbsp;

docs/IndexConstituents.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)