Skip to content

Commit 7d016fa

Browse files
No release notes for this build
1 parent 83300fe commit 7d016fa

691 files changed

Lines changed: 1682 additions & 693 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a
88

99
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
1010

11-
- API version: 2.108.0
12-
- Package version: 6.41.0
11+
- API version: 2.112.0
12+
- Package version: 6.42.0
1313

1414

1515
## Installation
@@ -191,6 +191,8 @@ Class | Method | HTTP request | Description
191191
*Intrinio::OwnersApi* | [**institutional_holdings_by_owner**](docs/OwnersApi.md#institutional_holdings_by_owner) | **GET** /owners/{identifier}/institutional_holdings | Institutional Holdings by Owner
192192
*Intrinio::OwnersApi* | [**search_owners**](docs/OwnersApi.md#search_owners) | **GET** /owners/search | Search Owners
193193
*Intrinio::SecurityApi* | [**get_all_securities**](docs/SecurityApi.md#get_all_securities) | **GET** /securities | All Securities
194+
*Intrinio::SecurityApi* | [**get_securities_latest_dividend_records**](docs/SecurityApi.md#get_securities_latest_dividend_records) | **GET** /securities/dividends/latest | Latest Dividend Records for All Securities
195+
*Intrinio::SecurityApi* | [**get_securities_latest_earnings_records**](docs/SecurityApi.md#get_securities_latest_earnings_records) | **GET** /securities/earnings/latest | Latest Earnings Records for All Securities
194196
*Intrinio::SecurityApi* | [**get_securities_short_interest**](docs/SecurityApi.md#get_securities_short_interest) | **GET** /securities/short_interest | Latest Short Interest
195197
*Intrinio::SecurityApi* | [**get_security_by_id**](docs/SecurityApi.md#get_security_by_id) | **GET** /securities/{identifier} | Lookup Security
196198
*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
@@ -391,6 +393,8 @@ Class | Method | HTTP request | Description
391393
- [Intrinio::ApiResponseSICIndices](docs/ApiResponseSICIndices.md)
392394
- [Intrinio::ApiResponseSICIndicesSearch](docs/ApiResponseSICIndicesSearch.md)
393395
- [Intrinio::ApiResponseSecurities](docs/ApiResponseSecurities.md)
396+
- [Intrinio::ApiResponseSecuritiesDividendLatest](docs/ApiResponseSecuritiesDividendLatest.md)
397+
- [Intrinio::ApiResponseSecuritiesEarningsLatest](docs/ApiResponseSecuritiesEarningsLatest.md)
394398
- [Intrinio::ApiResponseSecuritiesSearch](docs/ApiResponseSecuritiesSearch.md)
395399
- [Intrinio::ApiResponseSecuritiesShortInterest](docs/ApiResponseSecuritiesShortInterest.md)
396400
- [Intrinio::ApiResponseSecurityAccumulationDistributionIndex](docs/ApiResponseSecurityAccumulationDistributionIndex.md)
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
3+
[//]: # (CLASS:Intrinio::ApiResponseSecuritiesDividendLatest)
4+
5+
[//]: # (KIND:object)
6+
7+
### Intrinio::ApiResponseSecuritiesDividendLatest
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**dividend_records** | [**Array<DividendRecord>**](DividendRecord.md) |  
16+
**next_page** | String | 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:Intrinio::DividendRecord)
22+
23+
24+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
3+
[//]: # (CLASS:Intrinio::ApiResponseSecuritiesEarningsLatest)
4+
5+
[//]: # (KIND:object)
6+
7+
### Intrinio::ApiResponseSecuritiesEarningsLatest
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**earnings_records** | [**Array<EarningsRecord>**](EarningsRecord.md) |  
16+
**next_page** | String | 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:Intrinio::EarningsRecord)
22+
23+
24+

docs/SecurityApi.md

Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All URIs are relative to *https://api-v2.intrinio.com*
55
Method | HTTP request | Description
66
------------- | ------------- | -------------
77
[**get_all_securities**](SecurityApi.md#get_all_securities) | **GET** /securities | All Securities
8+
[**get_securities_latest_dividend_records**](SecurityApi.md#get_securities_latest_dividend_records) | **GET** /securities/dividends/latest | Latest Dividend Records for All Securities
9+
[**get_securities_latest_earnings_records**](SecurityApi.md#get_securities_latest_earnings_records) | **GET** /securities/earnings/latest | Latest Earnings Records for All Securities
810
[**get_securities_short_interest**](SecurityApi.md#get_securities_short_interest) | **GET** /securities/short_interest | Latest Short Interest
911
[**get_security_by_id**](SecurityApi.md#get_security_by_id) | **GET** /securities/{identifier} | Lookup Security
1012
[**get_security_data_point_number**](SecurityApi.md#get_security_data_point_number) | **GET** /securities/{identifier}/data_point/{tag}/number | Data Point (Number) for Security
@@ -186,6 +188,182 @@ Name | Type | Description | Notes
186188
[//]: # (END_OPERATION)
187189

188190

191+
[//]: # (START_OPERATION)
192+
193+
[//]: # (CLASS:Intrinio::SecurityApi)
194+
195+
[//]: # (METHOD:get_securities_latest_dividend_records)
196+
197+
[//]: # (RETURN_TYPE:Intrinio::ApiResponseSecuritiesDividendLatest)
198+
199+
[//]: # (RETURN_TYPE_KIND:object)
200+
201+
[//]: # (RETURN_TYPE_DOC:ApiResponseSecuritiesDividendLatest.md)
202+
203+
[//]: # (OPERATION:get_securities_latest_dividend_records_v2)
204+
205+
[//]: # (ENDPOINT:/securities/dividends/latest)
206+
207+
[//]: # (DOCUMENT_LINK:SecurityApi.md#get_securities_latest_dividend_records)
208+
209+
## **get_securities_latest_dividend_records**
210+
211+
[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_securities_latest_dividend_records_v2)
212+
213+
[//]: # (START_OVERVIEW)
214+
215+
> ApiResponseSecuritiesDividendLatest get_securities_latest_dividend_records(opts)
216+
217+
#### Latest Dividend Records for All Securities
218+
219+
220+
Returns the latest available dividend information for all securities. Returns one dividend record per security, limited to records from the last 90 days, sorted by date_loaded in descending order.
221+
222+
[//]: # (END_OVERVIEW)
223+
224+
### Example
225+
226+
[//]: # (START_CODE_EXAMPLE)
227+
228+
```ruby
229+
# Load the gem
230+
require 'intrinio-sdk'
231+
require 'pp'
232+
233+
# Setup authorization
234+
Intrinio.configure do |config|
235+
config.api_key['api_key'] = 'YOUR_API_KEY'
236+
config.allow_retries = true
237+
end
238+
239+
security_api = Intrinio::SecurityApi.new
240+
241+
opts = {
242+
page_size: 100,
243+
next_page: nil,
244+
date: Date.parse("2013-10-20"),
245+
identifiers: "AAPL,MSFT",
246+
next_page2: nil
247+
}
248+
249+
result = security_api.get_securities_latest_dividend_records(opts)
250+
pp result
251+
```
252+
253+
[//]: # (END_CODE_EXAMPLE)
254+
255+
[//]: # (START_DEFINITION)
256+
257+
### Parameters
258+
259+
[//]: # (START_PARAMETERS)
260+
261+
262+
Name | Type | Description | Notes
263+
------------- | ------------- | ------------- | -------------
264+
**page_size** | Integer| The number of results to return | [optional] [default to 100]  
265+
**next_page** | String| Gets the next page of data from a previous API call | [optional]  
266+
**date** | Date| Return dividend records on or before this date. Format YYYY-MM-DD | [optional]  
267+
**identifiers** | String| A comma-delimited list of security identifiers (tickers, CUSIPs, ISINs, etc.) | [optional]  
268+
**next_page2** | String| Gets the next page of data from a previous API call | [optional]  
269+
270+
[//]: # (END_PARAMETERS)
271+
272+
### Return type
273+
274+
[**ApiResponseSecuritiesDividendLatest**](ApiResponseSecuritiesDividendLatest.md)
275+
276+
[//]: # (END_OPERATION)
277+
278+
279+
[//]: # (START_OPERATION)
280+
281+
[//]: # (CLASS:Intrinio::SecurityApi)
282+
283+
[//]: # (METHOD:get_securities_latest_earnings_records)
284+
285+
[//]: # (RETURN_TYPE:Intrinio::ApiResponseSecuritiesEarningsLatest)
286+
287+
[//]: # (RETURN_TYPE_KIND:object)
288+
289+
[//]: # (RETURN_TYPE_DOC:ApiResponseSecuritiesEarningsLatest.md)
290+
291+
[//]: # (OPERATION:get_securities_latest_earnings_records_v2)
292+
293+
[//]: # (ENDPOINT:/securities/earnings/latest)
294+
295+
[//]: # (DOCUMENT_LINK:SecurityApi.md#get_securities_latest_earnings_records)
296+
297+
## **get_securities_latest_earnings_records**
298+
299+
[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_securities_latest_earnings_records_v2)
300+
301+
[//]: # (START_OVERVIEW)
302+
303+
> ApiResponseSecuritiesEarningsLatest get_securities_latest_earnings_records(opts)
304+
305+
#### Latest Earnings Records for All Securities
306+
307+
308+
Returns the latest available earnings information for all securities. Returns one earnings record per security, limited to records from the last 90 days, sorted by date_loaded in descending order.
309+
310+
[//]: # (END_OVERVIEW)
311+
312+
### Example
313+
314+
[//]: # (START_CODE_EXAMPLE)
315+
316+
```ruby
317+
# Load the gem
318+
require 'intrinio-sdk'
319+
require 'pp'
320+
321+
# Setup authorization
322+
Intrinio.configure do |config|
323+
config.api_key['api_key'] = 'YOUR_API_KEY'
324+
config.allow_retries = true
325+
end
326+
327+
security_api = Intrinio::SecurityApi.new
328+
329+
opts = {
330+
page_size: 100,
331+
next_page: nil,
332+
date: Date.parse("2013-10-20"),
333+
identifiers: "AAPL,MSFT",
334+
next_page2: nil
335+
}
336+
337+
result = security_api.get_securities_latest_earnings_records(opts)
338+
pp result
339+
```
340+
341+
[//]: # (END_CODE_EXAMPLE)
342+
343+
[//]: # (START_DEFINITION)
344+
345+
### Parameters
346+
347+
[//]: # (START_PARAMETERS)
348+
349+
350+
Name | Type | Description | Notes
351+
------------- | ------------- | ------------- | -------------
352+
**page_size** | Integer| The number of results to return | [optional] [default to 100]  
353+
**next_page** | String| Gets the next page of data from a previous API call | [optional]  
354+
**date** | Date| Return earnings records on or before this date. Format YYYY-MM-DD | [optional]  
355+
**identifiers** | String| A comma-delimited list of security identifiers (tickers, CUSIPs, ISINs, etc.) | [optional]  
356+
**next_page2** | String| Gets the next page of data from a previous API call | [optional]  
357+
358+
[//]: # (END_PARAMETERS)
359+
360+
### Return type
361+
362+
[**ApiResponseSecuritiesEarningsLatest**](ApiResponseSecuritiesEarningsLatest.md)
363+
364+
[//]: # (END_OPERATION)
365+
366+
189367
[//]: # (START_OPERATION)
190368

191369
[//]: # (CLASS:Intrinio::SecurityApi)

intrinio-sdk.gemspec

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.
77
8-
OpenAPI spec version: 2.108.0
8+
OpenAPI spec version: 2.112.0
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
Swagger Codegen version: unset

lib/intrinio-sdk.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#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.
55
6-
OpenAPI spec version: 2.108.0
6+
OpenAPI spec version: 2.112.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset
@@ -93,6 +93,8 @@
9393
require 'intrinio-sdk/models/api_response_sic_indices'
9494
require 'intrinio-sdk/models/api_response_sic_indices_search'
9595
require 'intrinio-sdk/models/api_response_securities'
96+
require 'intrinio-sdk/models/api_response_securities_dividend_latest'
97+
require 'intrinio-sdk/models/api_response_securities_earnings_latest'
9698
require 'intrinio-sdk/models/api_response_securities_search'
9799
require 'intrinio-sdk/models/api_response_securities_short_interest'
98100
require 'intrinio-sdk/models/api_response_security_accumulation_distribution_index'

lib/intrinio-sdk/api/bulk_downloads_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#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.
55
6-
OpenAPI spec version: 2.108.0
6+
OpenAPI spec version: 2.112.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/company_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#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.
55
6-
OpenAPI spec version: 2.108.0
6+
OpenAPI spec version: 2.112.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/data_point_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#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.
55
6-
OpenAPI spec version: 2.108.0
6+
OpenAPI spec version: 2.112.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/data_tag_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#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.
55
6-
OpenAPI spec version: 2.108.0
6+
OpenAPI spec version: 2.112.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

0 commit comments

Comments
 (0)