intrinio-sdk 1.1.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -8
  3. data/docs/ApiResponseCompaniesSearch.md +8 -0
  4. data/docs/ApiResponseDataTagsSearch.md +8 -0
  5. data/docs/ApiResponseEconomicIndicesSearch.md +8 -0
  6. data/docs/ApiResponseMunicipalities.md +9 -0
  7. data/docs/ApiResponseMunicipalitiyFinancials.md +9 -0
  8. data/docs/ApiResponseSICIndicesSearch.md +8 -0
  9. data/docs/ApiResponseSecuritiesSearch.md +8 -0
  10. data/docs/ApiResponseSecurityIntradayPrices.md +11 -0
  11. data/docs/ApiResponseStockMarketIndicesSearch.md +8 -0
  12. data/docs/CompanyApi.md +44 -115
  13. data/docs/DataTagApi.md +15 -51
  14. data/docs/FilingApi.md +19 -97
  15. data/docs/FundamentalSummary.md +1 -1
  16. data/docs/HistoricalDataApi.md +2 -0
  17. data/docs/IndexApi.md +33 -9
  18. data/docs/IntradayStockPrice.md +15 -0
  19. data/docs/Municipality.md +26 -0
  20. data/docs/MunicipalityApi.md +158 -0
  21. data/docs/MunicipalityFinancial.md +49 -0
  22. data/docs/RealtimeStockPrice.md +1 -1
  23. data/docs/SecurityApi.md +71 -4
  24. data/docs/StockExchangeApi.md +17 -42
  25. data/intrinio-sdk.gemspec +1 -1
  26. data/lib/intrinio-sdk.rb +14 -1
  27. data/lib/intrinio-sdk/api/company_api.rb +97 -154
  28. data/lib/intrinio-sdk/api/data_point_api.rb +1 -1
  29. data/lib/intrinio-sdk/api/data_tag_api.rb +27 -63
  30. data/lib/intrinio-sdk/api/filing_api.rb +42 -121
  31. data/lib/intrinio-sdk/api/fundamentals_api.rb +1 -1
  32. data/lib/intrinio-sdk/api/historical_data_api.rb +8 -1
  33. data/lib/intrinio-sdk/api/index_api.rb +73 -10
  34. data/lib/intrinio-sdk/api/municipality_api.rb +221 -0
  35. data/lib/intrinio-sdk/api/security_api.rb +117 -4
  36. data/lib/intrinio-sdk/api/stock_exchange_api.rb +45 -57
  37. data/lib/intrinio-sdk/api_client.rb +1 -1
  38. data/lib/intrinio-sdk/api_error.rb +1 -1
  39. data/lib/intrinio-sdk/configuration.rb +1 -1
  40. data/lib/intrinio-sdk/models/api_response_companies.rb +1 -1
  41. data/lib/intrinio-sdk/models/api_response_companies_search.rb +190 -0
  42. data/lib/intrinio-sdk/models/api_response_company_filings.rb +1 -1
  43. data/lib/intrinio-sdk/models/api_response_company_fundamentals.rb +1 -1
  44. data/lib/intrinio-sdk/models/api_response_company_historical_data.rb +1 -1
  45. data/lib/intrinio-sdk/models/api_response_company_news.rb +1 -1
  46. data/lib/intrinio-sdk/models/api_response_company_securities.rb +1 -1
  47. data/lib/intrinio-sdk/models/api_response_data_tags.rb +1 -1
  48. data/lib/intrinio-sdk/models/api_response_data_tags_search.rb +190 -0
  49. data/lib/intrinio-sdk/models/api_response_economic_index_historical_data.rb +1 -1
  50. data/lib/intrinio-sdk/models/api_response_economic_indices.rb +1 -1
  51. data/lib/intrinio-sdk/models/api_response_economic_indices_search.rb +190 -0
  52. data/lib/intrinio-sdk/models/api_response_filing_notes.rb +1 -1
  53. data/lib/intrinio-sdk/models/api_response_filing_notes_search.rb +1 -1
  54. data/lib/intrinio-sdk/models/api_response_filings.rb +1 -1
  55. data/lib/intrinio-sdk/models/api_response_historical_data.rb +1 -1
  56. data/lib/intrinio-sdk/models/api_response_municipalities.rb +200 -0
  57. data/lib/intrinio-sdk/models/api_response_municipalitiy_financials.rb +199 -0
  58. data/lib/intrinio-sdk/models/api_response_news.rb +1 -1
  59. data/lib/intrinio-sdk/models/api_response_reported_financials.rb +1 -1
  60. data/lib/intrinio-sdk/models/api_response_securities.rb +1 -1
  61. data/lib/intrinio-sdk/models/api_response_securities_search.rb +190 -0
  62. data/lib/intrinio-sdk/models/api_response_security_historical_data.rb +1 -1
  63. data/lib/intrinio-sdk/models/api_response_security_intraday_prices.rb +254 -0
  64. data/lib/intrinio-sdk/models/api_response_security_stock_price_adjustments.rb +1 -1
  65. data/lib/intrinio-sdk/models/api_response_security_stock_prices.rb +1 -1
  66. data/lib/intrinio-sdk/models/api_response_sic_index_historical_data.rb +1 -1
  67. data/lib/intrinio-sdk/models/api_response_sic_indices.rb +1 -1
  68. data/lib/intrinio-sdk/models/api_response_sic_indices_search.rb +190 -0
  69. data/lib/intrinio-sdk/models/api_response_standardized_financials.rb +1 -1
  70. data/lib/intrinio-sdk/models/api_response_stock_exchange_realtime_stock_prices.rb +1 -1
  71. data/lib/intrinio-sdk/models/api_response_stock_exchange_securities.rb +1 -1
  72. data/lib/intrinio-sdk/models/api_response_stock_exchange_stock_price_adjustments.rb +1 -1
  73. data/lib/intrinio-sdk/models/api_response_stock_exchange_stock_prices.rb +1 -1
  74. data/lib/intrinio-sdk/models/api_response_stock_exchanges.rb +1 -1
  75. data/lib/intrinio-sdk/models/api_response_stock_market_index_historical_data.rb +1 -1
  76. data/lib/intrinio-sdk/models/api_response_stock_market_indices.rb +1 -1
  77. data/lib/intrinio-sdk/models/api_response_stock_market_indices_search.rb +190 -0
  78. data/lib/intrinio-sdk/models/company.rb +1 -1
  79. data/lib/intrinio-sdk/models/company_filing.rb +1 -1
  80. data/lib/intrinio-sdk/models/company_news.rb +1 -1
  81. data/lib/intrinio-sdk/models/company_news_summary.rb +1 -1
  82. data/lib/intrinio-sdk/models/company_summary.rb +1 -1
  83. data/lib/intrinio-sdk/models/data_tag.rb +1 -1
  84. data/lib/intrinio-sdk/models/data_tag_summary.rb +1 -1
  85. data/lib/intrinio-sdk/models/dividend_record.rb +1 -1
  86. data/lib/intrinio-sdk/models/earnings_record.rb +1 -1
  87. data/lib/intrinio-sdk/models/economic_index.rb +1 -1
  88. data/lib/intrinio-sdk/models/economic_index_summary.rb +1 -1
  89. data/lib/intrinio-sdk/models/filing.rb +1 -1
  90. data/lib/intrinio-sdk/models/filing_note.rb +1 -1
  91. data/lib/intrinio-sdk/models/filing_note_filing.rb +1 -1
  92. data/lib/intrinio-sdk/models/filing_note_summary.rb +1 -1
  93. data/lib/intrinio-sdk/models/filing_summary.rb +1 -1
  94. data/lib/intrinio-sdk/models/fundamental.rb +1 -1
  95. data/lib/intrinio-sdk/models/fundamental_summary.rb +2 -2
  96. data/lib/intrinio-sdk/models/historical_data.rb +1 -1
  97. data/lib/intrinio-sdk/models/intraday_stock_price.rb +259 -0
  98. data/lib/intrinio-sdk/models/municipality.rb +369 -0
  99. data/lib/intrinio-sdk/models/municipality_financial.rb +599 -0
  100. data/lib/intrinio-sdk/models/realtime_stock_price.rb +2 -2
  101. data/lib/intrinio-sdk/models/realtime_stock_price_security.rb +1 -1
  102. data/lib/intrinio-sdk/models/reported_financial.rb +1 -1
  103. data/lib/intrinio-sdk/models/reported_tag.rb +1 -1
  104. data/lib/intrinio-sdk/models/security.rb +1 -1
  105. data/lib/intrinio-sdk/models/security_screen_clause.rb +1 -1
  106. data/lib/intrinio-sdk/models/security_screen_group.rb +1 -1
  107. data/lib/intrinio-sdk/models/security_screen_result.rb +1 -1
  108. data/lib/intrinio-sdk/models/security_screen_result_data.rb +1 -1
  109. data/lib/intrinio-sdk/models/security_summary.rb +1 -1
  110. data/lib/intrinio-sdk/models/sic_index.rb +1 -1
  111. data/lib/intrinio-sdk/models/standardized_financial.rb +1 -1
  112. data/lib/intrinio-sdk/models/stock_exchange.rb +1 -1
  113. data/lib/intrinio-sdk/models/stock_market_index.rb +1 -1
  114. data/lib/intrinio-sdk/models/stock_market_index_summary.rb +1 -1
  115. data/lib/intrinio-sdk/models/stock_price.rb +1 -1
  116. data/lib/intrinio-sdk/models/stock_price_adjustment.rb +1 -1
  117. data/lib/intrinio-sdk/models/stock_price_adjustment_summary.rb +1 -1
  118. data/lib/intrinio-sdk/models/stock_price_summary.rb +1 -1
  119. data/lib/intrinio-sdk/version.rb +2 -2
  120. data/spec/api/company_api_spec.rb +37 -54
  121. data/spec/api/data_point_api_spec.rb +3 -3
  122. data/spec/api/data_tag_api_spec.rb +9 -19
  123. data/spec/api/filing_api_spec.rb +73 -12
  124. data/spec/api/fundamentals_api_spec.rb +6 -6
  125. data/spec/api/historical_data_api_spec.rb +3 -2
  126. data/spec/api/index_api_spec.rb +28 -19
  127. data/spec/api/municipality_api_spec.rb +84 -0
  128. data/spec/api/security_api_spec.rb +74 -13
  129. data/spec/api/stock_exchange_api_spec.rb +31 -23
  130. data/spec/api_client_spec.rb +1 -1
  131. data/spec/configuration_spec.rb +1 -1
  132. data/spec/models/api_response_companies_search_spec.rb +42 -0
  133. data/spec/models/api_response_companies_spec.rb +1 -1
  134. data/spec/models/api_response_company_filings_spec.rb +1 -1
  135. data/spec/models/api_response_company_fundamentals_spec.rb +1 -1
  136. data/spec/models/api_response_company_historical_data_spec.rb +1 -1
  137. data/spec/models/api_response_company_news_spec.rb +1 -1
  138. data/spec/models/api_response_company_securities_spec.rb +1 -1
  139. data/spec/models/api_response_data_tags_search_spec.rb +42 -0
  140. data/spec/models/api_response_data_tags_spec.rb +1 -1
  141. data/spec/models/api_response_economic_index_historical_data_spec.rb +1 -1
  142. data/spec/models/api_response_economic_indices_search_spec.rb +42 -0
  143. data/spec/models/api_response_economic_indices_spec.rb +1 -1
  144. data/spec/models/api_response_filings_spec.rb +1 -1
  145. data/spec/models/api_response_historical_data_spec.rb +1 -1
  146. data/spec/models/api_response_municipalities_spec.rb +48 -0
  147. data/spec/models/api_response_municipalitiy_financials_spec.rb +48 -0
  148. data/spec/models/api_response_news_spec.rb +1 -1
  149. data/spec/models/api_response_reported_financials_spec.rb +1 -1
  150. data/spec/models/api_response_securities_search_spec.rb +42 -0
  151. data/spec/models/api_response_securities_spec.rb +1 -1
  152. data/spec/models/api_response_security_historical_data_spec.rb +1 -1
  153. data/spec/models/api_response_security_intraday_prices_spec.rb +64 -0
  154. data/spec/models/api_response_security_stock_price_adjustments_spec.rb +1 -1
  155. data/spec/models/api_response_security_stock_prices_spec.rb +1 -1
  156. data/spec/models/api_response_sic_index_historical_data_spec.rb +1 -1
  157. data/spec/models/api_response_sic_indices_search_spec.rb +42 -0
  158. data/spec/models/api_response_sic_indices_spec.rb +1 -1
  159. data/spec/models/api_response_standardized_financials_spec.rb +1 -1
  160. data/spec/models/api_response_stock_exchange_securities_spec.rb +1 -1
  161. data/spec/models/api_response_stock_exchange_stock_price_adjustments_spec.rb +1 -1
  162. data/spec/models/api_response_stock_exchange_stock_prices_spec.rb +1 -1
  163. data/spec/models/api_response_stock_exchanges_spec.rb +1 -1
  164. data/spec/models/api_response_stock_market_index_historical_data_spec.rb +1 -1
  165. data/spec/models/api_response_stock_market_indices_search_spec.rb +42 -0
  166. data/spec/models/api_response_stock_market_indices_spec.rb +1 -1
  167. data/spec/models/company_filing_spec.rb +1 -1
  168. data/spec/models/company_news_spec.rb +1 -1
  169. data/spec/models/company_news_summary_spec.rb +1 -1
  170. data/spec/models/company_spec.rb +1 -1
  171. data/spec/models/company_summary_spec.rb +1 -1
  172. data/spec/models/data_tag_spec.rb +1 -1
  173. data/spec/models/data_tag_summary_spec.rb +1 -1
  174. data/spec/models/economic_index_spec.rb +1 -1
  175. data/spec/models/economic_index_summary_spec.rb +1 -1
  176. data/spec/models/filing_spec.rb +1 -1
  177. data/spec/models/filing_summary_spec.rb +1 -1
  178. data/spec/models/fundamental_spec.rb +1 -1
  179. data/spec/models/fundamental_summary_spec.rb +1 -1
  180. data/spec/models/historical_data_spec.rb +1 -1
  181. data/spec/models/intraday_stock_price_spec.rb +84 -0
  182. data/spec/models/municipality_financial_spec.rb +288 -0
  183. data/spec/models/municipality_spec.rb +150 -0
  184. data/spec/models/reported_financial_spec.rb +1 -1
  185. data/spec/models/reported_tag_spec.rb +1 -1
  186. data/spec/models/security_screen_clause_spec.rb +1 -1
  187. data/spec/models/security_screen_group_spec.rb +1 -1
  188. data/spec/models/security_screen_result_data_spec.rb +1 -1
  189. data/spec/models/security_screen_result_spec.rb +1 -1
  190. data/spec/models/security_spec.rb +1 -1
  191. data/spec/models/security_summary_spec.rb +1 -1
  192. data/spec/models/sic_index_spec.rb +1 -1
  193. data/spec/models/standardized_financial_spec.rb +1 -1
  194. data/spec/models/stock_exchange_spec.rb +1 -1
  195. data/spec/models/stock_market_index_spec.rb +1 -1
  196. data/spec/models/stock_market_index_summary_spec.rb +1 -1
  197. data/spec/models/stock_price_adjustment_spec.rb +7 -1
  198. data/spec/models/stock_price_adjustment_summary_spec.rb +1 -7
  199. data/spec/models/stock_price_spec.rb +1 -1
  200. data/spec/models/stock_price_summary_spec.rb +1 -1
  201. data/spec/spec_helper.rb +1 -1
  202. metadata +54 -3
  203. data/intrinio-sdk-1.1.0.gem +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c8d4571fa9d33e6ba4eb025d94715bcede39bdcc
4
- data.tar.gz: d139e4e3de35b18530f29faa29db841cfc87099d
3
+ metadata.gz: d28fbbbba20f94f4eee00841b6e28c8d8d78d7ab
4
+ data.tar.gz: 8df2aab4fad7ec9b7b4a904cc8d4625d871660f2
5
5
  SHA512:
6
- metadata.gz: 8c6a75bf8d7bdf1387c6a2ce4c104c23abc0e53072089d498b8a0f9d5b016689235d2f60b6ad7a1a50c3d09a4b87ad16d383c3609106f71beeaef1e1e618502d
7
- data.tar.gz: 6c8522d0ec972997f8e406dc31cbb9305d1d0ec081db8216165b68266320e7921c54a37c99c94423e18c4d4b5104379f4929e56b1548f6e807c8c54b0611d60d
6
+ metadata.gz: 0f3067f28e7c1df996939c94a42e2188e469796d21defcc028950a972980458e50b08357fbb5e2e5b7f7601217cea1360925ec138d35c3a0e98fe3e95bf45704
7
+ data.tar.gz: d801858bd91319b06c6ff4f94ddd8762f7dc9199730b20438665d683e1f4282d9836db6ec6c2f1df6c627e85b8f083835f3966b5f55e1b21236970bff679a521
data/README.md CHANGED
@@ -8,8 +8,8 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a
8
8
 
9
9
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
10
10
 
11
- - API version: 2.1.0
12
- - Package version: 1.1.1
11
+ - API version: 2.1.1
12
+ - Package version: 2.0.0
13
13
 
14
14
 
15
15
  ## Installation
@@ -57,8 +57,6 @@ All URIs are relative to *https://api-v2.intrinio.com*
57
57
 
58
58
  Class | Method | HTTP request | Description
59
59
  ------------ | ------------- | ------------- | -------------
60
- *Intrinio::CompanyApi* | [**filter_companies**](docs/CompanyApi.md#filter_companies) | **GET** /companies/filter | Filter Companies
61
- *Intrinio::CompanyApi* | [**filter_company_fundamentals**](docs/CompanyApi.md#filter_company_fundamentals) | **GET** /companies/{identifier}/fundamentals/filter | Filter Fundamentals by Company
62
60
  *Intrinio::CompanyApi* | [**get_all_companies**](docs/CompanyApi.md#get_all_companies) | **GET** /companies | All Companies
63
61
  *Intrinio::CompanyApi* | [**get_all_company_news**](docs/CompanyApi.md#get_all_company_news) | **GET** /companies/news | All News
64
62
  *Intrinio::CompanyApi* | [**get_company**](docs/CompanyApi.md#get_company) | **GET** /companies/{identifier} | Lookup Company
@@ -73,12 +71,9 @@ Class | Method | HTTP request | Description
73
71
  *Intrinio::CompanyApi* | [**search_companies**](docs/CompanyApi.md#search_companies) | **GET** /companies/search | Search Companies
74
72
  *Intrinio::DataPointApi* | [**get_data_point_number**](docs/DataPointApi.md#get_data_point_number) | **GET** /data_point/{identifier}/{tag}/number | Data Point (Number)
75
73
  *Intrinio::DataPointApi* | [**get_data_point_text**](docs/DataPointApi.md#get_data_point_text) | **GET** /data_point/{identifier}/{tag}/text | Data Point (Text)
76
- *Intrinio::DataTagApi* | [**filter_data_tags**](docs/DataTagApi.md#filter_data_tags) | **GET** /data_tags/filter | Filter Data Tags
77
74
  *Intrinio::DataTagApi* | [**get_all_data_tags**](docs/DataTagApi.md#get_all_data_tags) | **GET** /data_tags | All Data Tags
78
75
  *Intrinio::DataTagApi* | [**get_data_tag_by_id**](docs/DataTagApi.md#get_data_tag_by_id) | **GET** /data_tags/{identifier} | Lookup Data Tag
79
76
  *Intrinio::DataTagApi* | [**search_data_tags**](docs/DataTagApi.md#search_data_tags) | **GET** /data_tags/search | Search Data Tags
80
- *Intrinio::FilingApi* | [**filter_filings**](docs/FilingApi.md#filter_filings) | **GET** /filings/filter | Filter Filings
81
- *Intrinio::FilingApi* | [**filter_notes**](docs/FilingApi.md#filter_notes) | **GET** /filings/notes/filter | Filter Filing Notes
82
77
  *Intrinio::FilingApi* | [**get_all_filings**](docs/FilingApi.md#get_all_filings) | **GET** /filings | All Filings
83
78
  *Intrinio::FilingApi* | [**get_all_notes**](docs/FilingApi.md#get_all_notes) | **GET** /filings/notes | All Filing Notes
84
79
  *Intrinio::FilingApi* | [**get_filing_by_id**](docs/FilingApi.md#get_filing_by_id) | **GET** /filings/{id} | Lookup Filing
@@ -109,11 +104,15 @@ Class | Method | HTTP request | Description
109
104
  *Intrinio::IndexApi* | [**search_economic_indices**](docs/IndexApi.md#search_economic_indices) | **GET** /indices/economic/search | Search Economic Indices
110
105
  *Intrinio::IndexApi* | [**search_sic_indices**](docs/IndexApi.md#search_sic_indices) | **GET** /indices/sic/search | Search SIC Indices
111
106
  *Intrinio::IndexApi* | [**search_stock_markets_indices**](docs/IndexApi.md#search_stock_markets_indices) | **GET** /indices/stock_market/search | Search Stock Market Indices
107
+ *Intrinio::MunicipalityApi* | [**get_all_municipalities**](docs/MunicipalityApi.md#get_all_municipalities) | **GET** /municipalities | All Municipalities
108
+ *Intrinio::MunicipalityApi* | [**get_municipality_by_id**](docs/MunicipalityApi.md#get_municipality_by_id) | **GET** /municipalities/{id} | Municipality by ID
109
+ *Intrinio::MunicipalityApi* | [**get_municipality_financials**](docs/MunicipalityApi.md#get_municipality_financials) | **GET** /municipalities/{id}/financials | Financials for a Municipality
112
110
  *Intrinio::SecurityApi* | [**get_all_securities**](docs/SecurityApi.md#get_all_securities) | **GET** /securities | All Securities
113
111
  *Intrinio::SecurityApi* | [**get_security_by_id**](docs/SecurityApi.md#get_security_by_id) | **GET** /securities/{identifier} | Lookup Security
114
112
  *Intrinio::SecurityApi* | [**get_security_data_point_number**](docs/SecurityApi.md#get_security_data_point_number) | **GET** /securities/{identifier}/data_point/{tag}/number | Data Point (Number) for Security
115
113
  *Intrinio::SecurityApi* | [**get_security_data_point_text**](docs/SecurityApi.md#get_security_data_point_text) | **GET** /securities/{identifier}/data_point/{tag}/text | Data Point (Text) for Security
116
114
  *Intrinio::SecurityApi* | [**get_security_historical_data**](docs/SecurityApi.md#get_security_historical_data) | **GET** /securities/{identifier}/historical_data/{tag} | Historical Data for Security
115
+ *Intrinio::SecurityApi* | [**get_security_intraday_prices**](docs/SecurityApi.md#get_security_intraday_prices) | **GET** /securities/{identifier}/prices/intraday | Intraday Stock Prices for Security
117
116
  *Intrinio::SecurityApi* | [**get_security_latest_dividend_record**](docs/SecurityApi.md#get_security_latest_dividend_record) | **GET** /securities/{identifier}/dividends/latest | Lastest Dividend Record for Security
118
117
  *Intrinio::SecurityApi* | [**get_security_latest_earnings_record**](docs/SecurityApi.md#get_security_latest_earnings_record) | **GET** /securities/{identifier}/earnings/latest | Lastest Earnings Record for Security
119
118
  *Intrinio::SecurityApi* | [**get_security_realtime_price**](docs/SecurityApi.md#get_security_realtime_price) | **GET** /securities/{identifier}/prices/realtime | Realtime Stock Price for Security
@@ -121,7 +120,6 @@ Class | Method | HTTP request | Description
121
120
  *Intrinio::SecurityApi* | [**get_security_stock_prices**](docs/SecurityApi.md#get_security_stock_prices) | **GET** /securities/{identifier}/prices | Stock Prices by Security
122
121
  *Intrinio::SecurityApi* | [**screen_securities**](docs/SecurityApi.md#screen_securities) | **POST** /securities/screen | Screen Securities
123
122
  *Intrinio::SecurityApi* | [**search_securities**](docs/SecurityApi.md#search_securities) | **GET** /securities/search | Search Securities
124
- *Intrinio::StockExchangeApi* | [**filter_stock_exchanges**](docs/StockExchangeApi.md#filter_stock_exchanges) | **GET** /stock_exchanges/filter | Filter Stock Exchanges
125
123
  *Intrinio::StockExchangeApi* | [**get_all_stock_exchanges**](docs/StockExchangeApi.md#get_all_stock_exchanges) | **GET** /stock_exchanges | All Stock Exchanges
126
124
  *Intrinio::StockExchangeApi* | [**get_stock_exchange_by_id**](docs/StockExchangeApi.md#get_stock_exchange_by_id) | **GET** /stock_exchanges/{identifier} | Lookup Stock Exchange
127
125
  *Intrinio::StockExchangeApi* | [**get_stock_exchange_price_adjustments**](docs/StockExchangeApi.md#get_stock_exchange_price_adjustments) | **GET** /stock_exchanges/{identifier}/prices/adjustments | Stock Price Adjustments by Exchange
@@ -133,24 +131,32 @@ Class | Method | HTTP request | Description
133
131
  ## Models
134
132
 
135
133
  - [Intrinio::ApiResponseCompanies](docs/ApiResponseCompanies.md)
134
+ - [Intrinio::ApiResponseCompaniesSearch](docs/ApiResponseCompaniesSearch.md)
136
135
  - [Intrinio::ApiResponseCompanyFilings](docs/ApiResponseCompanyFilings.md)
137
136
  - [Intrinio::ApiResponseCompanyFundamentals](docs/ApiResponseCompanyFundamentals.md)
138
137
  - [Intrinio::ApiResponseCompanyHistoricalData](docs/ApiResponseCompanyHistoricalData.md)
139
138
  - [Intrinio::ApiResponseCompanyNews](docs/ApiResponseCompanyNews.md)
140
139
  - [Intrinio::ApiResponseCompanySecurities](docs/ApiResponseCompanySecurities.md)
141
140
  - [Intrinio::ApiResponseDataTags](docs/ApiResponseDataTags.md)
141
+ - [Intrinio::ApiResponseDataTagsSearch](docs/ApiResponseDataTagsSearch.md)
142
142
  - [Intrinio::ApiResponseEconomicIndexHistoricalData](docs/ApiResponseEconomicIndexHistoricalData.md)
143
143
  - [Intrinio::ApiResponseEconomicIndices](docs/ApiResponseEconomicIndices.md)
144
+ - [Intrinio::ApiResponseEconomicIndicesSearch](docs/ApiResponseEconomicIndicesSearch.md)
144
145
  - [Intrinio::ApiResponseFilingNotes](docs/ApiResponseFilingNotes.md)
145
146
  - [Intrinio::ApiResponseFilingNotesSearch](docs/ApiResponseFilingNotesSearch.md)
146
147
  - [Intrinio::ApiResponseFilings](docs/ApiResponseFilings.md)
147
148
  - [Intrinio::ApiResponseHistoricalData](docs/ApiResponseHistoricalData.md)
149
+ - [Intrinio::ApiResponseMunicipalities](docs/ApiResponseMunicipalities.md)
150
+ - [Intrinio::ApiResponseMunicipalitiyFinancials](docs/ApiResponseMunicipalitiyFinancials.md)
148
151
  - [Intrinio::ApiResponseNews](docs/ApiResponseNews.md)
149
152
  - [Intrinio::ApiResponseReportedFinancials](docs/ApiResponseReportedFinancials.md)
150
153
  - [Intrinio::ApiResponseSICIndexHistoricalData](docs/ApiResponseSICIndexHistoricalData.md)
151
154
  - [Intrinio::ApiResponseSICIndices](docs/ApiResponseSICIndices.md)
155
+ - [Intrinio::ApiResponseSICIndicesSearch](docs/ApiResponseSICIndicesSearch.md)
152
156
  - [Intrinio::ApiResponseSecurities](docs/ApiResponseSecurities.md)
157
+ - [Intrinio::ApiResponseSecuritiesSearch](docs/ApiResponseSecuritiesSearch.md)
153
158
  - [Intrinio::ApiResponseSecurityHistoricalData](docs/ApiResponseSecurityHistoricalData.md)
159
+ - [Intrinio::ApiResponseSecurityIntradayPrices](docs/ApiResponseSecurityIntradayPrices.md)
154
160
  - [Intrinio::ApiResponseSecurityStockPriceAdjustments](docs/ApiResponseSecurityStockPriceAdjustments.md)
155
161
  - [Intrinio::ApiResponseSecurityStockPrices](docs/ApiResponseSecurityStockPrices.md)
156
162
  - [Intrinio::ApiResponseStandardizedFinancials](docs/ApiResponseStandardizedFinancials.md)
@@ -161,6 +167,7 @@ Class | Method | HTTP request | Description
161
167
  - [Intrinio::ApiResponseStockExchanges](docs/ApiResponseStockExchanges.md)
162
168
  - [Intrinio::ApiResponseStockMarketIndexHistoricalData](docs/ApiResponseStockMarketIndexHistoricalData.md)
163
169
  - [Intrinio::ApiResponseStockMarketIndices](docs/ApiResponseStockMarketIndices.md)
170
+ - [Intrinio::ApiResponseStockMarketIndicesSearch](docs/ApiResponseStockMarketIndicesSearch.md)
164
171
  - [Intrinio::Company](docs/Company.md)
165
172
  - [Intrinio::CompanyFiling](docs/CompanyFiling.md)
166
173
  - [Intrinio::CompanyNews](docs/CompanyNews.md)
@@ -180,6 +187,9 @@ Class | Method | HTTP request | Description
180
187
  - [Intrinio::Fundamental](docs/Fundamental.md)
181
188
  - [Intrinio::FundamentalSummary](docs/FundamentalSummary.md)
182
189
  - [Intrinio::HistoricalData](docs/HistoricalData.md)
190
+ - [Intrinio::IntradayStockPrice](docs/IntradayStockPrice.md)
191
+ - [Intrinio::Municipality](docs/Municipality.md)
192
+ - [Intrinio::MunicipalityFinancial](docs/MunicipalityFinancial.md)
183
193
  - [Intrinio::RealtimeStockPrice](docs/RealtimeStockPrice.md)
184
194
  - [Intrinio::RealtimeStockPriceSecurity](docs/RealtimeStockPriceSecurity.md)
185
195
  - [Intrinio::ReportedFinancial](docs/ReportedFinancial.md)
@@ -0,0 +1,8 @@
1
+ # Intrinio::ApiResponseCompaniesSearch
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **companies** | [**Array<CompanySummary>**](CompanySummary.md) | | [optional]
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # Intrinio::ApiResponseDataTagsSearch
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **tags** | [**Array<DataTag>**](DataTag.md) | | [optional]
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # Intrinio::ApiResponseEconomicIndicesSearch
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **indices** | [**Array<EconomicIndexSummary>**](EconomicIndexSummary.md) | | [optional]
7
+
8
+
@@ -0,0 +1,9 @@
1
+ # Intrinio::ApiResponseMunicipalities
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **municipalities** | [**Array<Municipality>**](Municipality.md) | | [optional]
7
+ **next_page** | **String** | The token required to request the next page of the data | [optional]
8
+
9
+
@@ -0,0 +1,9 @@
1
+ # Intrinio::ApiResponseMunicipalitiyFinancials
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **financials** | [**Array<MunicipalityFinancial>**](MunicipalityFinancial.md) | | [optional]
7
+ **municipality** | [**Municipality**](Municipality.md) | | [optional]
8
+
9
+
@@ -0,0 +1,8 @@
1
+ # Intrinio::ApiResponseSICIndicesSearch
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **indices** | [**Array<SICIndex>**](SICIndex.md) | | [optional]
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # Intrinio::ApiResponseSecuritiesSearch
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **securities** | [**Array<SecuritySummary>**](SecuritySummary.md) | | [optional]
7
+
8
+
@@ -0,0 +1,11 @@
1
+ # Intrinio::ApiResponseSecurityIntradayPrices
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **intraday_prices** | [**Array<IntradayStockPrice>**](IntradayStockPrice.md) | The intraday stock prices for the Security | [optional]
7
+ **security** | [**SecuritySummary**](SecuritySummary.md) | The Security resolved from the given identifier | [optional]
8
+ **source** | **String** | The source of the data | [optional]
9
+ **next_page** | **String** | The token required to request the next page of the data | [optional]
10
+
11
+
@@ -0,0 +1,8 @@
1
+ # Intrinio::ApiResponseStockMarketIndicesSearch
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **indices** | [**Array<StockMarketIndexSummary>**](StockMarketIndexSummary.md) | | [optional]
7
+
8
+
@@ -4,8 +4,6 @@ All URIs are relative to *https://api-v2.intrinio.com*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
- [**filter_companies**](CompanyApi.md#filter_companies) | **GET** /companies/filter | Filter Companies
8
- [**filter_company_fundamentals**](CompanyApi.md#filter_company_fundamentals) | **GET** /companies/{identifier}/fundamentals/filter | Filter Fundamentals by Company
9
7
  [**get_all_companies**](CompanyApi.md#get_all_companies) | **GET** /companies | All Companies
10
8
  [**get_all_company_news**](CompanyApi.md#get_all_company_news) | **GET** /companies/news | All News
11
9
  [**get_company**](CompanyApi.md#get_company) | **GET** /companies/{identifier} | Lookup Company
@@ -20,12 +18,12 @@ Method | HTTP request | Description
20
18
  [**search_companies**](CompanyApi.md#search_companies) | **GET** /companies/search | Search Companies
21
19
 
22
20
 
23
- # **filter_companies**
24
- > ApiResponseCompanies filter_companies(opts)
21
+ # **get_all_companies**
22
+ > ApiResponseCompanies get_all_companies(opts)
25
23
 
26
- Filter Companies
24
+ All Companies
27
25
 
28
- Returns Companies matching the specified filters
26
+ Returns all Companies. When parameters are specified, returns matching companies.
29
27
 
30
28
  ### Example
31
29
  ```ruby
@@ -40,20 +38,21 @@ end
40
38
  company_api = Intrinio::CompanyApi.new
41
39
 
42
40
  opts = {
43
- last_filing_date: nil, # Date | Last filing date
41
+ latest_filing_date: nil, # Date | Last filing date
44
42
  sic: "3350", # String | Standard Industrial Classification code
45
43
  template: "industrial", # String | Template
46
44
  sector: "Basic Materials", # String | Industry sector
47
45
  industry_category: "Metals & Mining", # String | Industry category
48
46
  industry_group: "Aluminum", # String | Industry group
47
+ page_size: 100, # Float | The number of results to return
49
48
  next_page: nil # String | Gets the next page of data from a previous API call
50
49
  }
51
50
 
52
51
  begin
53
- result = company_api.filter_companies(opts)
52
+ result = company_api.get_all_companies(opts)
54
53
  p result
55
54
  rescue Intrinio::ApiError => e
56
- puts "Exception when calling CompanyApi->filter_companies: #{e}"
55
+ puts "Exception when calling CompanyApi->get_all_companies: #{e}"
57
56
  end
58
57
  ```
59
58
 
@@ -61,113 +60,13 @@ end
61
60
 
62
61
  Name | Type | Description | Notes
63
62
  ------------- | ------------- | ------------- | -------------
64
- **last_filing_date** | **Date**| Last filing date | [optional]
63
+ **latest_filing_date** | **Date**| Last filing date | [optional]
65
64
  **sic** | **String**| Standard Industrial Classification code | [optional]
66
65
  **template** | **String**| Template | [optional]
67
66
  **sector** | **String**| Industry sector | [optional]
68
67
  **industry_category** | **String**| Industry category | [optional]
69
68
  **industry_group** | **String**| Industry group | [optional]
70
- **next_page** | **String**| Gets the next page of data from a previous API call | [optional]
71
-
72
- ### Return type
73
-
74
- [**ApiResponseCompanies**](ApiResponseCompanies.md)
75
-
76
- # **filter_company_fundamentals**
77
- > ApiResponseCompanyFundamentals filter_company_fundamentals(identifier, opts)
78
-
79
- Filter Fundamentals by Company
80
-
81
- Returns Fundamentals for the Company with the given `identifier` and matching the specified filters
82
-
83
- ### Example
84
- ```ruby
85
- # Load the gem
86
- require 'intrinio-sdk'
87
-
88
- # Setup authorization
89
- Intrinio.configure do |config|
90
- config.api_key['api_key'] = 'YOUR API KEY'
91
- end
92
-
93
- company_api = Intrinio::CompanyApi.new
94
-
95
- identifier = "AAPL" # String | A Company identifier (Ticker, CIK, LEI, Intrinio ID)
96
-
97
- opts = {
98
- filed_after: nil, # Date | Filed on or after this date
99
- filed_before: nil, # Date | Filed on or before this date
100
- reported_only: false, # BOOLEAN | Only as-reported fundamentals
101
- fiscal_year: 2017, # Integer | Only for the given fiscal year
102
- statement_code: nil, # String | Only of the given statement code
103
- type: nil, # String | Only of the given type
104
- start_date: nil, # Date | Only on or after the given date
105
- end_date: nil, # Date | Only on or before the given date
106
- next_page: nil # String | Gets the next page of data from a previous API call
107
- }
108
-
109
- begin
110
- result = company_api.filter_company_fundamentals(identifier, opts)
111
- p result
112
- rescue Intrinio::ApiError => e
113
- puts "Exception when calling CompanyApi->filter_company_fundamentals: #{e}"
114
- end
115
- ```
116
-
117
- ### Parameters
118
-
119
- Name | Type | Description | Notes
120
- ------------- | ------------- | ------------- | -------------
121
- **identifier** | **String**| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |
122
- **filed_after** | **Date**| Filed on or after this date | [optional]
123
- **filed_before** | **Date**| Filed on or before this date | [optional]
124
- **reported_only** | **BOOLEAN**| Only as-reported fundamentals | [optional]
125
- **fiscal_year** | **Integer**| Only for the given fiscal year | [optional]
126
- **statement_code** | **String**| Only of the given statement code | [optional]
127
- **type** | **String**| Only of the given type | [optional]
128
- **start_date** | **Date**| Only on or after the given date | [optional]
129
- **end_date** | **Date**| Only on or before the given date | [optional]
130
- **next_page** | **String**| Gets the next page of data from a previous API call | [optional]
131
-
132
- ### Return type
133
-
134
- [**ApiResponseCompanyFundamentals**](ApiResponseCompanyFundamentals.md)
135
-
136
- # **get_all_companies**
137
- > ApiResponseCompanies get_all_companies(opts)
138
-
139
- All Companies
140
-
141
- Returns all Companies
142
-
143
- ### Example
144
- ```ruby
145
- # Load the gem
146
- require 'intrinio-sdk'
147
-
148
- # Setup authorization
149
- Intrinio.configure do |config|
150
- config.api_key['api_key'] = 'YOUR API KEY'
151
- end
152
-
153
- company_api = Intrinio::CompanyApi.new
154
-
155
- opts = {
156
- next_page: nil # String | Gets the next page of data from a previous API call
157
- }
158
-
159
- begin
160
- result = company_api.get_all_companies(opts)
161
- p result
162
- rescue Intrinio::ApiError => e
163
- puts "Exception when calling CompanyApi->get_all_companies: #{e}"
164
- end
165
- ```
166
-
167
- ### Parameters
168
-
169
- Name | Type | Description | Notes
170
- ------------- | ------------- | ------------- | -------------
69
+ **page_size** | **Float**| The number of results to return | [optional] [default to 100]
171
70
  **next_page** | **String**| Gets the next page of data from a previous API call | [optional]
172
71
 
173
72
  ### Return type
@@ -194,6 +93,7 @@ end
194
93
  company_api = Intrinio::CompanyApi.new
195
94
 
196
95
  opts = {
96
+ page_size: 100, # Float | The number of results to return
197
97
  next_page: nil # String | Gets the next page of data from a previous API call
198
98
  }
199
99
 
@@ -209,6 +109,7 @@ end
209
109
 
210
110
  Name | Type | Description | Notes
211
111
  ------------- | ------------- | ------------- | -------------
112
+ **page_size** | **Float**| The number of results to return | [optional] [default to 100]
212
113
  **next_page** | **String**| Gets the next page of data from a previous API call | [optional]
213
114
 
214
115
  ### Return type
@@ -363,6 +264,7 @@ company_api = Intrinio::CompanyApi.new
363
264
  identifier = "AAPL" # String | A Company identifier (Ticker, CIK, LEI, Intrinio ID)
364
265
 
365
266
  opts = {
267
+ page_size: 100, # Float | The number of results to return
366
268
  next_page: nil # String | Gets the next page of data from a previous API call
367
269
  }
368
270
 
@@ -379,6 +281,7 @@ end
379
281
  Name | Type | Description | Notes
380
282
  ------------- | ------------- | ------------- | -------------
381
283
  **identifier** | **String**| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |
284
+ **page_size** | **Float**| The number of results to return | [optional] [default to 100]
382
285
  **next_page** | **String**| Gets the next page of data from a previous API call | [optional]
383
286
 
384
287
  ### Return type
@@ -390,7 +293,7 @@ Name | Type | Description | Notes
390
293
 
391
294
  All Fundamentals by Company
392
295
 
393
- Returns all Fundamentals for the Company with the given `identifier`
296
+ Returns all Fundamentals for the Company with the given `identifier`. Returns Fundamentals matching parameters when supplied.
394
297
 
395
298
  ### Example
396
299
  ```ruby
@@ -407,6 +310,15 @@ company_api = Intrinio::CompanyApi.new
407
310
  identifier = "AAPL" # String | A Company identifier (Ticker, CIK, LEI, Intrinio ID)
408
311
 
409
312
  opts = {
313
+ filed_after: nil, # Date | Filed on or after this date
314
+ filed_before: nil, # Date | Filed on or before this date
315
+ reported_only: false, # BOOLEAN | Only as-reported fundamentals
316
+ fiscal_year: 2017, # Integer | Only for the given fiscal year
317
+ statement_code: nil, # String | Only of the given statement code
318
+ type: nil, # String | Only of the given type
319
+ start_date: nil, # Date | Only on or after the given date
320
+ end_date: nil, # Date | Only on or before the given date
321
+ page_size: 100, # Float | The number of results to return
410
322
  next_page: nil # String | Gets the next page of data from a previous API call
411
323
  }
412
324
 
@@ -423,6 +335,15 @@ end
423
335
  Name | Type | Description | Notes
424
336
  ------------- | ------------- | ------------- | -------------
425
337
  **identifier** | **String**| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |
338
+ **filed_after** | **Date**| Filed on or after this date | [optional]
339
+ **filed_before** | **Date**| Filed on or before this date | [optional]
340
+ **reported_only** | **BOOLEAN**| Only as-reported fundamentals | [optional]
341
+ **fiscal_year** | **Integer**| Only for the given fiscal year | [optional]
342
+ **statement_code** | **String**| Only of the given statement code | [optional]
343
+ **type** | **String**| Only of the given type | [optional]
344
+ **start_date** | **Date**| Only on or after the given date | [optional]
345
+ **end_date** | **Date**| Only on or before the given date | [optional]
346
+ **page_size** | **Float**| The number of results to return | [optional] [default to 100]
426
347
  **next_page** | **String**| Gets the next page of data from a previous API call | [optional]
427
348
 
428
349
  ### Return type
@@ -458,6 +379,7 @@ opts = {
458
379
  start_date: Date.parse("2018-01-01"), # Date | Get historical data on or after this date
459
380
  end_date: Date.parse("2019-01-01"), # Date | Get historical data on or before this date
460
381
  sort_order: "desc", # String | Sort by date `asc` or `desc`
382
+ page_size: 100, # Float | The number of results to return
461
383
  next_page: nil # String | Gets the next page of data from a previous API call
462
384
  }
463
385
 
@@ -480,6 +402,7 @@ Name | Type | Description | Notes
480
402
  **start_date** | **Date**| Get historical data on or after this date | [optional]
481
403
  **end_date** | **Date**| Get historical data on or before this date | [optional]
482
404
  **sort_order** | **String**| Sort by date `asc` or `desc` | [optional] [default to desc]
405
+ **page_size** | **Float**| The number of results to return | [optional] [default to 100]
483
406
  **next_page** | **String**| Gets the next page of data from a previous API call | [optional]
484
407
 
485
408
  ### Return type
@@ -508,6 +431,7 @@ company_api = Intrinio::CompanyApi.new
508
431
  identifier = "AAPL" # String | A Company identifier (Ticker, CIK, LEI, Intrinio ID)
509
432
 
510
433
  opts = {
434
+ page_size: 100, # Float | The number of results to return
511
435
  next_page: nil # String | Gets the next page of data from a previous API call
512
436
  }
513
437
 
@@ -524,6 +448,7 @@ end
524
448
  Name | Type | Description | Notes
525
449
  ------------- | ------------- | ------------- | -------------
526
450
  **identifier** | **String**| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |
451
+ **page_size** | **Float**| The number of results to return | [optional] [default to 100]
527
452
  **next_page** | **String**| Gets the next page of data from a previous API call | [optional]
528
453
 
529
454
  ### Return type
@@ -624,7 +549,7 @@ Name | Type | Description | Notes
624
549
  [**Fundamental**](Fundamental.md)
625
550
 
626
551
  # **search_companies**
627
- > ApiResponseCompanies search_companies(query)
552
+ > ApiResponseCompaniesSearch search_companies(query, opts)
628
553
 
629
554
  Search Companies
630
555
 
@@ -644,9 +569,12 @@ company_api = Intrinio::CompanyApi.new
644
569
 
645
570
  query = "Apple" # String | Search parameters
646
571
 
572
+ opts = {
573
+ page_size: 100 # Float | The number of results to return
574
+ }
647
575
 
648
576
  begin
649
- result = company_api.search_companies(query)
577
+ result = company_api.search_companies(query, opts)
650
578
  p result
651
579
  rescue Intrinio::ApiError => e
652
580
  puts "Exception when calling CompanyApi->search_companies: #{e}"
@@ -658,8 +586,9 @@ end
658
586
  Name | Type | Description | Notes
659
587
  ------------- | ------------- | ------------- | -------------
660
588
  **query** | **String**| Search parameters |
589
+ **page_size** | **Float**| The number of results to return | [optional] [default to 100]
661
590
 
662
591
  ### Return type
663
592
 
664
- [**ApiResponseCompanies**](ApiResponseCompanies.md)
593
+ [**ApiResponseCompaniesSearch**](ApiResponseCompaniesSearch.md)
665
594