Skip to content

Commit c43ee93

Browse files
No release notes for this build
1 parent 9e133f9 commit c43ee93

File tree

302 files changed

+792
-302
lines changed

Some content is hidden

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

302 files changed

+792
-302
lines changed

README.md

+4-2
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.45.0
12-
- Package version: 6.25.0
11+
- API version: 2.46.0
12+
- Package version: 6.26.0
1313

1414

1515
## Installation
@@ -136,6 +136,7 @@ Class | Method | HTTP request | Description
136136
*Intrinio::IndexApi* | [**search_sic_indices**](docs/IndexApi.md#search_sic_indices) | **GET** /indices/sic/search | Search SIC Indices
137137
*Intrinio::IndexApi* | [**search_stock_markets_indices**](docs/IndexApi.md#search_stock_markets_indices) | **GET** /indices/stock_market/search | Search Stock Market Indices
138138
*Intrinio::InsiderTransactionFilingsApi* | [**get_all_insider_transaction_filings**](docs/InsiderTransactionFilingsApi.md#get_all_insider_transaction_filings) | **GET** /insider_transaction_filings | All Insider Transactions Filings
139+
*Intrinio::MarketApi* | [**get_market_status**](docs/MarketApi.md#get_market_status) | **GET** /market/status | Market Status
139140
*Intrinio::MunicipalityApi* | [**get_all_municipalities**](docs/MunicipalityApi.md#get_all_municipalities) | **GET** /municipalities | All Municipalities
140141
*Intrinio::MunicipalityApi* | [**get_municipality_by_id**](docs/MunicipalityApi.md#get_municipality_by_id) | **GET** /municipalities/{id} | Municipality by ID
141142
*Intrinio::MunicipalityApi* | [**get_municipality_financials**](docs/MunicipalityApi.md#get_municipality_financials) | **GET** /municipalities/{id}/financials | Financials for a Municipality
@@ -455,6 +456,7 @@ Class | Method | HTTP request | Description
455456
- [Intrinio::IntradayStockPrice](docs/IntradayStockPrice.md)
456457
- [Intrinio::KeltnerChannelTechnicalValue](docs/KeltnerChannelTechnicalValue.md)
457458
- [Intrinio::KnowSureThingTechnicalValue](docs/KnowSureThingTechnicalValue.md)
459+
- [Intrinio::MarketStatusResult](docs/MarketStatusResult.md)
458460
- [Intrinio::MassIndexTechnicalValue](docs/MassIndexTechnicalValue.md)
459461
- [Intrinio::MoneyFlowIndexTechnicalValue](docs/MoneyFlowIndexTechnicalValue.md)
460462
- [Intrinio::MovingAverageConvergenceDivergenceTechnicalValue](docs/MovingAverageConvergenceDivergenceTechnicalValue.md)

docs/CompanyApi.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,7 @@ Name | Type | Description | Notes
15131513

15141514
[//]: # (START_OVERVIEW)
15151515

1516-
> ApiResponseCompanySharesOutstanding shares_outstanding_by_company(identifier)
1516+
> ApiResponseCompanySharesOutstanding shares_outstanding_by_company(identifier, opts)
15171517
15181518
#### Shares Outstanding by Company
15191519

@@ -1540,7 +1540,12 @@ end
15401540
company_api = Intrinio::CompanyApi.new
15411541
identifier = "AAPL"
15421542

1543-
result = company_api.shares_outstanding_by_company(identifier)
1543+
opts = {
1544+
end_date_greater_than: nil,
1545+
end_date_less_than: nil
1546+
}
1547+
1548+
result = company_api.shares_outstanding_by_company(identifier, opts)
15441549
pp result
15451550
```
15461551

@@ -1556,6 +1561,8 @@ pp result
15561561
Name | Type | Description | Notes
15571562
------------- | ------------- | ------------- | -------------
15581563
**identifier** | String| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |  
1564+
**end_date_greater_than** | Date| Returns shares outstanding after this date. | [optional]  
1565+
**end_date_less_than** | Date| Returns shares outstanding before this date. | [optional]  
15591566

15601567
[//]: # (END_PARAMETERS)
15611568

docs/MarketApi.md

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Intrinio::MarketApi
2+
3+
All URIs are relative to *https://api-v2.intrinio.com*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**get_market_status**](MarketApi.md#get_market_status) | **GET** /market/status | Market Status
8+
9+
10+
11+
[//]: # (START_OPERATION)
12+
13+
[//]: # (CLASS:Intrinio::MarketApi)
14+
15+
[//]: # (METHOD:get_market_status)
16+
17+
[//]: # (RETURN_TYPE:Intrinio::MarketStatusResult)
18+
19+
[//]: # (RETURN_TYPE_KIND:object)
20+
21+
[//]: # (RETURN_TYPE_DOC:MarketStatusResult.md)
22+
23+
[//]: # (OPERATION:get_market_status_v2)
24+
25+
[//]: # (ENDPOINT:/market/status)
26+
27+
[//]: # (DOCUMENT_LINK:MarketApi.md#get_market_status)
28+
29+
## **get_market_status**
30+
31+
[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_market_status_v2)
32+
33+
[//]: # (START_OVERVIEW)
34+
35+
> MarketStatusResult get_market_status
36+
37+
#### Market Status
38+
39+
40+
Returns the market status.
41+
42+
[//]: # (END_OVERVIEW)
43+
44+
### Example
45+
46+
[//]: # (START_CODE_EXAMPLE)
47+
48+
```ruby
49+
# Load the gem
50+
require 'intrinio-sdk'
51+
require 'pp'
52+
53+
# Setup authorization
54+
Intrinio.configure do |config|
55+
config.api_key['api_key'] = 'YOUR_API_KEY'
56+
config.allow_retries = true
57+
end
58+
59+
market_api = Intrinio::MarketApi.new
60+
result = market_api.get_market_status
61+
pp result
62+
```
63+
64+
[//]: # (END_CODE_EXAMPLE)
65+
66+
[//]: # (START_DEFINITION)
67+
68+
### Parameters
69+
70+
[//]: # (START_PARAMETERS)
71+
72+
This endpoint does not need any parameter.
73+
74+
[//]: # (END_PARAMETERS)
75+
76+
### Return type
77+
78+
[**MarketStatusResult**](MarketStatusResult.md)
79+
80+
[//]: # (END_OPERATION)
81+

docs/MarketStatusResult.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
3+
[//]: # (CLASS:Intrinio::MarketStatusResult)
4+
5+
[//]: # (KIND:object)
6+
7+
### Intrinio::MarketStatusResult
8+
9+
#### Properties
10+
11+
[//]: # (START_DEFINITION)
12+
13+
Name | Type | Description
14+
------------ | ------------- | -------------
15+
**timestamp** | DateTime | The UTC timestamp.  
16+
**is_open** | BOOLEAN | Whether the market is open or not.  
17+
18+
[//]: # (END_DEFINITION)
19+
20+
21+

docs/SecurityApi.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ Name | Type | Description | Notes
535535

536536
[//]: # (START_OVERVIEW)
537537

538-
> ApiResponseSecurityInstitutionalOwnership get_security_insider_ownership(identifier)
538+
> ApiResponseSecurityInstitutionalOwnership get_security_insider_ownership(identifier, opts)
539539
540540
#### Institutional Ownership by Security
541541

@@ -562,7 +562,11 @@ end
562562
security_api = Intrinio::SecurityApi.new
563563
identifier = "AAPL"
564564

565-
result = security_api.get_security_insider_ownership(identifier)
565+
opts = {
566+
next_page: nil
567+
}
568+
569+
result = security_api.get_security_insider_ownership(identifier, opts)
566570
pp result
567571
```
568572

@@ -578,6 +582,7 @@ pp result
578582
Name | Type | Description | Notes
579583
------------- | ------------- | ------------- | -------------
580584
**identifier** | String| A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) |  
585+
**next_page** | String| Gets the next page of data from a previous API call | [optional]  
581586

582587
[//]: # (END_PARAMETERS)
583588

intrinio-sdk.gemspec

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

lib/intrinio-sdk.rb

+3-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset
@@ -195,6 +195,7 @@
195195
require 'intrinio-sdk/models/intraday_stock_price'
196196
require 'intrinio-sdk/models/keltner_channel_technical_value'
197197
require 'intrinio-sdk/models/know_sure_thing_technical_value'
198+
require 'intrinio-sdk/models/market_status_result'
198199
require 'intrinio-sdk/models/mass_index_technical_value'
199200
require 'intrinio-sdk/models/money_flow_index_technical_value'
200201
require 'intrinio-sdk/models/moving_average_convergence_divergence_technical_value'
@@ -299,6 +300,7 @@
299300
require 'intrinio-sdk/api/historical_data_api'
300301
require 'intrinio-sdk/api/index_api'
301302
require 'intrinio-sdk/api/insider_transaction_filings_api'
303+
require 'intrinio-sdk/api/market_api'
302304
require 'intrinio-sdk/api/municipality_api'
303305
require 'intrinio-sdk/api/options_api'
304306
require 'intrinio-sdk/api/owners_api'

lib/intrinio-sdk/api/bulk_downloads_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.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

+7-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset
@@ -1191,6 +1191,8 @@ def search_companies_with_http_info(query, opts = {})
11911191
# Returns the shares outstanding reported on the front cover of the SEC 10-K and 10-Q filings.
11921192
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
11931193
# @param [Hash] opts the optional parameters
1194+
# @option opts [Date] :end_date_greater_than Returns shares outstanding after this date.
1195+
# @option opts [Date] :end_date_less_than Returns shares outstanding before this date.
11941196
# @return [ApiResponseCompanySharesOutstanding]
11951197
def shares_outstanding_by_company(identifier, opts = {})
11961198
data, _status_code, _headers = shares_outstanding_by_company_with_http_info(identifier, opts)
@@ -1201,6 +1203,8 @@ def shares_outstanding_by_company(identifier, opts = {})
12011203
# Returns the shares outstanding reported on the front cover of the SEC 10-K and 10-Q filings.
12021204
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
12031205
# @param [Hash] opts the optional parameters
1206+
# @option opts [Date] :end_date_greater_than Returns shares outstanding after this date.
1207+
# @option opts [Date] :end_date_less_than Returns shares outstanding before this date.
12041208
# @return [Array<(ApiResponseCompanySharesOutstanding, Fixnum, Hash)>] ApiResponseCompanySharesOutstanding data, response status code and response headers
12051209
def shares_outstanding_by_company_with_http_info(identifier, opts = {})
12061210
if @api_client.config.debugging
@@ -1215,6 +1219,8 @@ def shares_outstanding_by_company_with_http_info(identifier, opts = {})
12151219

12161220
# query parameters
12171221
query_params = {}
1222+
query_params[:'end_date_greater_than'] = opts[:'end_date_greater_than'] if !opts[:'end_date_greater_than'].nil?
1223+
query_params[:'end_date_less_than'] = opts[:'end_date_less_than'] if !opts[:'end_date_less_than'].nil?
12181224

12191225
# header parameters
12201226
header_params = {}

lib/intrinio-sdk/api/data_point_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.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

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/esg_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/et_fs_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/filing_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/forex_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/fundamentals_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/historical_data_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/index_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

lib/intrinio-sdk/api/insider_transaction_filings_api.rb

+1-1
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.45.0
6+
OpenAPI spec version: 2.46.0
77
88
Generated by: https://github.com/swagger-api/swagger-codegen.git
99
Swagger Codegen version: unset

0 commit comments

Comments
 (0)