intrinio-sdk 1.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.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/README.md +176 -0
- data/Rakefile +8 -0
- data/docs/ApiResponseCompanies.md +9 -0
- data/docs/ApiResponseCompanyFilings.md +10 -0
- data/docs/ApiResponseCompanyFundamentals.md +10 -0
- data/docs/ApiResponseCompanyHistoricalData.md +10 -0
- data/docs/ApiResponseCompanyNews.md +10 -0
- data/docs/ApiResponseCompanySecurities.md +10 -0
- data/docs/ApiResponseDataTags.md +9 -0
- data/docs/ApiResponseEconomicIndexHistoricalData.md +10 -0
- data/docs/ApiResponseEconomicIndices.md +9 -0
- data/docs/ApiResponseFilings.md +9 -0
- data/docs/ApiResponseHistoricalData.md +9 -0
- data/docs/ApiResponseNews.md +9 -0
- data/docs/ApiResponseReportedFinancials.md +10 -0
- data/docs/ApiResponseSICIndexHistoricalData.md +10 -0
- data/docs/ApiResponseSICIndices.md +9 -0
- data/docs/ApiResponseSecurities.md +9 -0
- data/docs/ApiResponseSecurityHistoricalData.md +10 -0
- data/docs/ApiResponseSecurityStockPriceAdjustments.md +10 -0
- data/docs/ApiResponseSecurityStockPrices.md +10 -0
- data/docs/ApiResponseStandardizedFinancials.md +10 -0
- data/docs/ApiResponseStockExchangeSecurities.md +10 -0
- data/docs/ApiResponseStockExchangeStockPriceAdjustments.md +10 -0
- data/docs/ApiResponseStockExchangeStockPrices.md +10 -0
- data/docs/ApiResponseStockExchanges.md +9 -0
- data/docs/ApiResponseStockMarketIndexHistoricalData.md +10 -0
- data/docs/ApiResponseStockMarketIndices.md +9 -0
- data/docs/Company.md +39 -0
- data/docs/CompanyApi.md +659 -0
- data/docs/CompanyFiling.md +17 -0
- data/docs/CompanyNews.md +13 -0
- data/docs/CompanyNewsSummary.md +12 -0
- data/docs/CompanySummary.md +12 -0
- data/docs/DataPointApi.md +96 -0
- data/docs/DataTag.md +17 -0
- data/docs/DataTagApi.md +184 -0
- data/docs/DataTagSummary.md +11 -0
- data/docs/EconomicIndex.md +19 -0
- data/docs/EconomicIndexSummary.md +18 -0
- data/docs/Filing.md +17 -0
- data/docs/FilingApi.md +142 -0
- data/docs/FilingSummary.md +16 -0
- data/docs/Fundamental.md +16 -0
- data/docs/FundamentalSummary.md +15 -0
- data/docs/FundamentalsApi.md +181 -0
- data/docs/HistoricalData.md +9 -0
- data/docs/HistoricalDataApi.md +64 -0
- data/docs/IndexApi.md +800 -0
- data/docs/ReportedFinancial.md +9 -0
- data/docs/ReportedTag.md +14 -0
- data/docs/SICIndex.md +12 -0
- data/docs/Security.md +34 -0
- data/docs/SecurityApi.md +420 -0
- data/docs/SecurityScreenClause.md +10 -0
- data/docs/SecurityScreenGroup.md +10 -0
- data/docs/SecurityScreenResult.md +9 -0
- data/docs/SecurityScreenResultData.md +10 -0
- data/docs/SecuritySummary.md +17 -0
- data/docs/StandardizedFinancial.md +9 -0
- data/docs/StockExchange.md +17 -0
- data/docs/StockExchangeApi.md +267 -0
- data/docs/StockMarketIndex.md +17 -0
- data/docs/StockMarketIndexSummary.md +16 -0
- data/docs/StockPrice.md +21 -0
- data/docs/StockPriceAdjustment.md +12 -0
- data/docs/StockPriceAdjustmentSummary.md +13 -0
- data/docs/StockPriceSummary.md +20 -0
- data/git_push.sh +55 -0
- data/intrinio-sdk.gemspec +45 -0
- data/lib/intrinio-sdk.rb +105 -0
- data/lib/intrinio-sdk/api/company_api.rb +885 -0
- data/lib/intrinio-sdk/api/data_point_api.rb +141 -0
- data/lib/intrinio-sdk/api/data_tag_api.rb +251 -0
- data/lib/intrinio-sdk/api/filing_api.rb +192 -0
- data/lib/intrinio-sdk/api/fundamentals_api.rb +261 -0
- data/lib/intrinio-sdk/api/historical_data_api.rb +100 -0
- data/lib/intrinio-sdk/api/index_api.rb +1079 -0
- data/lib/intrinio-sdk/api/security_api.rb +568 -0
- data/lib/intrinio-sdk/api/stock_exchange_api.rb +353 -0
- data/lib/intrinio-sdk/api_client.rb +389 -0
- data/lib/intrinio-sdk/api_error.rb +38 -0
- data/lib/intrinio-sdk/configuration.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_companies.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_company_filings.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_company_fundamentals.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_company_historical_data.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_company_news.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_company_securities.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_data_tags.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_economic_index_historical_data.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_economic_indices.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_filings.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_historical_data.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_news.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_reported_financials.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_securities.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_security_historical_data.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_security_stock_price_adjustments.rb +211 -0
- data/lib/intrinio-sdk/models/api_response_security_stock_prices.rb +211 -0
- data/lib/intrinio-sdk/models/api_response_sic_index_historical_data.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_sic_indices.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_standardized_financials.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_stock_exchange_securities.rb +211 -0
- data/lib/intrinio-sdk/models/api_response_stock_exchange_stock_price_adjustments.rb +211 -0
- data/lib/intrinio-sdk/models/api_response_stock_exchange_stock_prices.rb +211 -0
- data/lib/intrinio-sdk/models/api_response_stock_exchanges.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_stock_market_index_historical_data.rb +209 -0
- data/lib/intrinio-sdk/models/api_response_stock_market_indices.rb +200 -0
- data/lib/intrinio-sdk/models/company.rb +498 -0
- data/lib/intrinio-sdk/models/company_filing.rb +278 -0
- data/lib/intrinio-sdk/models/company_news.rb +239 -0
- data/lib/intrinio-sdk/models/company_news_summary.rb +229 -0
- data/lib/intrinio-sdk/models/company_summary.rb +229 -0
- data/lib/intrinio-sdk/models/data_tag.rb +312 -0
- data/lib/intrinio-sdk/models/data_tag_summary.rb +219 -0
- data/lib/intrinio-sdk/models/economic_index.rb +299 -0
- data/lib/intrinio-sdk/models/economic_index_summary.rb +289 -0
- data/lib/intrinio-sdk/models/filing.rb +278 -0
- data/lib/intrinio-sdk/models/filing_summary.rb +269 -0
- data/lib/intrinio-sdk/models/fundamental.rb +302 -0
- data/lib/intrinio-sdk/models/fundamental_summary.rb +292 -0
- data/lib/intrinio-sdk/models/historical_data.rb +199 -0
- data/lib/intrinio-sdk/models/reported_financial.rb +198 -0
- data/lib/intrinio-sdk/models/reported_tag.rb +249 -0
- data/lib/intrinio-sdk/models/security.rb +453 -0
- data/lib/intrinio-sdk/models/security_screen_clause.rb +242 -0
- data/lib/intrinio-sdk/models/security_screen_group.rb +213 -0
- data/lib/intrinio-sdk/models/security_screen_result.rb +199 -0
- data/lib/intrinio-sdk/models/security_screen_result_data.rb +209 -0
- data/lib/intrinio-sdk/models/security_summary.rb +279 -0
- data/lib/intrinio-sdk/models/sic_index.rb +229 -0
- data/lib/intrinio-sdk/models/standardized_financial.rb +198 -0
- data/lib/intrinio-sdk/models/stock_exchange.rb +279 -0
- data/lib/intrinio-sdk/models/stock_market_index.rb +279 -0
- data/lib/intrinio-sdk/models/stock_market_index_summary.rb +269 -0
- data/lib/intrinio-sdk/models/stock_price.rb +352 -0
- data/lib/intrinio-sdk/models/stock_price_adjustment.rb +229 -0
- data/lib/intrinio-sdk/models/stock_price_adjustment_summary.rb +239 -0
- data/lib/intrinio-sdk/models/stock_price_summary.rb +342 -0
- data/lib/intrinio-sdk/version.rb +15 -0
- data/spec/api/company_api_spec.rb +233 -0
- data/spec/api/data_point_api_spec.rb +61 -0
- data/spec/api/data_tag_api_spec.rb +88 -0
- data/spec/api/filing_api_spec.rb +75 -0
- data/spec/api/fundamentals_api_spec.rb +86 -0
- data/spec/api/historical_data_api_spec.rb +53 -0
- data/spec/api/index_api_spec.rb +275 -0
- data/spec/api/security_api_spec.rb +161 -0
- data/spec/api/stock_exchange_api_spec.rb +113 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/api_response_companies_spec.rb +48 -0
- data/spec/models/api_response_company_filings_spec.rb +54 -0
- data/spec/models/api_response_company_fundamentals_spec.rb +54 -0
- data/spec/models/api_response_company_historical_data_spec.rb +54 -0
- data/spec/models/api_response_company_news_spec.rb +54 -0
- data/spec/models/api_response_company_securities_spec.rb +54 -0
- data/spec/models/api_response_data_tags_spec.rb +48 -0
- data/spec/models/api_response_economic_index_historical_data_spec.rb +54 -0
- data/spec/models/api_response_economic_indices_spec.rb +48 -0
- data/spec/models/api_response_filings_spec.rb +48 -0
- data/spec/models/api_response_historical_data_spec.rb +48 -0
- data/spec/models/api_response_news_spec.rb +48 -0
- data/spec/models/api_response_reported_financials_spec.rb +54 -0
- data/spec/models/api_response_securities_spec.rb +48 -0
- data/spec/models/api_response_security_historical_data_spec.rb +54 -0
- data/spec/models/api_response_security_stock_price_adjustments_spec.rb +54 -0
- data/spec/models/api_response_security_stock_prices_spec.rb +54 -0
- data/spec/models/api_response_sic_index_historical_data_spec.rb +54 -0
- data/spec/models/api_response_sic_indices_spec.rb +48 -0
- data/spec/models/api_response_standardized_financials_spec.rb +54 -0
- data/spec/models/api_response_stock_exchange_securities_spec.rb +54 -0
- data/spec/models/api_response_stock_exchange_stock_price_adjustments_spec.rb +54 -0
- data/spec/models/api_response_stock_exchange_stock_prices_spec.rb +54 -0
- data/spec/models/api_response_stock_exchanges_spec.rb +48 -0
- data/spec/models/api_response_stock_market_index_historical_data_spec.rb +54 -0
- data/spec/models/api_response_stock_market_indices_spec.rb +48 -0
- data/spec/models/company_filing_spec.rb +96 -0
- data/spec/models/company_news_spec.rb +72 -0
- data/spec/models/company_news_summary_spec.rb +66 -0
- data/spec/models/company_spec.rb +228 -0
- data/spec/models/company_summary_spec.rb +66 -0
- data/spec/models/data_tag_spec.rb +100 -0
- data/spec/models/data_tag_summary_spec.rb +60 -0
- data/spec/models/economic_index_spec.rb +108 -0
- data/spec/models/economic_index_summary_spec.rb +102 -0
- data/spec/models/filing_spec.rb +96 -0
- data/spec/models/filing_summary_spec.rb +90 -0
- data/spec/models/fundamental_spec.rb +94 -0
- data/spec/models/fundamental_summary_spec.rb +88 -0
- data/spec/models/historical_data_spec.rb +48 -0
- data/spec/models/reported_financial_spec.rb +48 -0
- data/spec/models/reported_tag_spec.rb +78 -0
- data/spec/models/security_screen_clause_spec.rb +58 -0
- data/spec/models/security_screen_group_spec.rb +54 -0
- data/spec/models/security_screen_result_data_spec.rb +54 -0
- data/spec/models/security_screen_result_spec.rb +48 -0
- data/spec/models/security_spec.rb +198 -0
- data/spec/models/security_summary_spec.rb +96 -0
- data/spec/models/sic_index_spec.rb +66 -0
- data/spec/models/standardized_financial_spec.rb +48 -0
- data/spec/models/stock_exchange_spec.rb +96 -0
- data/spec/models/stock_market_index_spec.rb +96 -0
- data/spec/models/stock_market_index_summary_spec.rb +90 -0
- data/spec/models/stock_price_adjustment_spec.rb +66 -0
- data/spec/models/stock_price_adjustment_summary_spec.rb +72 -0
- data/spec/models/stock_price_spec.rb +124 -0
- data/spec/models/stock_price_summary_spec.rb +118 -0
- data/spec/spec_helper.rb +111 -0
- metadata +509 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 23fe0f02baca1099b1a644df996ef8c9d0c3af02
|
|
4
|
+
data.tar.gz: 50ebb5289138638f816371cd53be8a6df0382ba7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9575e33c5b2fcbc7e4cb4ba71666eea2800445aab0ee2a493b50c2c433d87893f0473c94f9f1bb95d640a98ff768034c9d10492fdff294a5309bea5aee13de4a
|
|
7
|
+
data.tar.gz: 220d013695b0fbfb784b10ddda5f0eb38972b4717795b712aaac7682e994a0e583ab7823e9bb4667cacfb03c82afd4941937c900950eb1beff80906ef3d0b6db
|
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
# Intrinio Ruby SDK
|
|
2
|
+
|
|
3
|
+
intrinio-sdk - the Ruby gem for the Intrinio API
|
|
4
|
+
|
|
5
|
+
To get an API key, [sign up here](https://intrinio.com/).
|
|
6
|
+
|
|
7
|
+
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://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.
|
|
8
|
+
|
|
9
|
+
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
10
|
+
|
|
11
|
+
- API version: 2.0.0
|
|
12
|
+
- Package version: 1.0.0
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
Add the following to your Gemfile:
|
|
18
|
+
|
|
19
|
+
gem 'intrinio-sdk', :git => 'https://github.com/intrinio/ruby-sdk.git'
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## SDK Code Examples
|
|
23
|
+
|
|
24
|
+
Code examples for Intrinio SDKs are available at https://github.com/intrinio/sdk-code-samples
|
|
25
|
+
|
|
26
|
+
## Getting Started
|
|
27
|
+
|
|
28
|
+
Please follow the [installation](#installation) procedure and then run the following code:
|
|
29
|
+
```ruby
|
|
30
|
+
# Load the gem
|
|
31
|
+
require 'intrinio-sdk'
|
|
32
|
+
|
|
33
|
+
# Setup authorization
|
|
34
|
+
Intrinio.configure do |config|
|
|
35
|
+
config.api_key['api_key'] = 'YOUR API KEY'
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
company_api = Intrinio::CompanyApi.new
|
|
39
|
+
|
|
40
|
+
begin
|
|
41
|
+
result = company_api.filter_companies()
|
|
42
|
+
p result
|
|
43
|
+
rescue Intrinio::ApiError => e
|
|
44
|
+
puts "Exception when calling CompanyApi->filter_companies: #{e}"
|
|
45
|
+
end
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## API Endpoints
|
|
49
|
+
|
|
50
|
+
All URIs are relative to *https://api-v2.intrinio.com*
|
|
51
|
+
|
|
52
|
+
Class | Method | HTTP request | Description
|
|
53
|
+
------------ | ------------- | ------------- | -------------
|
|
54
|
+
*Intrinio::CompanyApi* | [**filter_companies**](docs/CompanyApi.md#filter_companies) | **GET** /companies/filter | Filter Companies
|
|
55
|
+
*Intrinio::CompanyApi* | [**filter_company_fundamentals**](docs/CompanyApi.md#filter_company_fundamentals) | **GET** /companies/{identifier}/fundamentals/filter | Filter Fundamentals for a Company
|
|
56
|
+
*Intrinio::CompanyApi* | [**get_all_companies**](docs/CompanyApi.md#get_all_companies) | **GET** /companies | Get All Companies
|
|
57
|
+
*Intrinio::CompanyApi* | [**get_all_company_news**](docs/CompanyApi.md#get_all_company_news) | **GET** /companies/news | Get All Company News
|
|
58
|
+
*Intrinio::CompanyApi* | [**get_company**](docs/CompanyApi.md#get_company) | **GET** /companies/{identifier} | Get a Company by ID
|
|
59
|
+
*Intrinio::CompanyApi* | [**get_company_data_point_number**](docs/CompanyApi.md#get_company_data_point_number) | **GET** /companies/{identifier}/data_point/{tag}/number | Get Company Data Point (Number)
|
|
60
|
+
*Intrinio::CompanyApi* | [**get_company_data_point_text**](docs/CompanyApi.md#get_company_data_point_text) | **GET** /companies/{identifier}/data_point/{tag}/text | Get Company Data Point (Text)
|
|
61
|
+
*Intrinio::CompanyApi* | [**get_company_filings**](docs/CompanyApi.md#get_company_filings) | **GET** /companies/{identifier}/filings | Get Filings for a Company
|
|
62
|
+
*Intrinio::CompanyApi* | [**get_company_fundamentals**](docs/CompanyApi.md#get_company_fundamentals) | **GET** /companies/{identifier}/fundamentals | Get All Fundamentals for a Company
|
|
63
|
+
*Intrinio::CompanyApi* | [**get_company_historical_data**](docs/CompanyApi.md#get_company_historical_data) | **GET** /companies/{identifier}/historical_data/{tag} | Get Company Historical Data
|
|
64
|
+
*Intrinio::CompanyApi* | [**get_company_news**](docs/CompanyApi.md#get_company_news) | **GET** /companies/{identifier}/news | Get News for a Company
|
|
65
|
+
*Intrinio::CompanyApi* | [**get_company_securities**](docs/CompanyApi.md#get_company_securities) | **GET** /companies/{identifier}/securities | Get Securities by Company
|
|
66
|
+
*Intrinio::CompanyApi* | [**lookup_company_fundamental**](docs/CompanyApi.md#lookup_company_fundamental) | **GET** /companies/{identifier}/fundamentals/lookup/{statement_code}/{fiscal_year}/{fiscal_period} | Lookup a Fundamental for a Company
|
|
67
|
+
*Intrinio::CompanyApi* | [**search_companies**](docs/CompanyApi.md#search_companies) | **GET** /companies/search | Search Companies
|
|
68
|
+
*Intrinio::DataPointApi* | [**get_data_point_number**](docs/DataPointApi.md#get_data_point_number) | **GET** /data_point/{identifier}/{tag}/number | Get a Data Point (Number)
|
|
69
|
+
*Intrinio::DataPointApi* | [**get_data_point_text**](docs/DataPointApi.md#get_data_point_text) | **GET** /data_point/{identifier}/{tag}/text | Get a Data Point (Text)
|
|
70
|
+
*Intrinio::DataTagApi* | [**filter_data_tags**](docs/DataTagApi.md#filter_data_tags) | **GET** /data_tags/filter | Filter Data Tags
|
|
71
|
+
*Intrinio::DataTagApi* | [**get_all_data_tags**](docs/DataTagApi.md#get_all_data_tags) | **GET** /data_tags | Get All Data Tags
|
|
72
|
+
*Intrinio::DataTagApi* | [**get_data_tag_by_id**](docs/DataTagApi.md#get_data_tag_by_id) | **GET** /data_tags/{identifier} | Get a Data Tag by ID
|
|
73
|
+
*Intrinio::DataTagApi* | [**search_data_tags**](docs/DataTagApi.md#search_data_tags) | **GET** /data_tags/search | Search Data Tags
|
|
74
|
+
*Intrinio::FilingApi* | [**filter_filings**](docs/FilingApi.md#filter_filings) | **GET** /filings/filter | Filter Filings
|
|
75
|
+
*Intrinio::FilingApi* | [**get_all_filings**](docs/FilingApi.md#get_all_filings) | **GET** /filings | Get All Filings
|
|
76
|
+
*Intrinio::FilingApi* | [**get_filing_by_id**](docs/FilingApi.md#get_filing_by_id) | **GET** /filings/{id} | Get a Filing by ID
|
|
77
|
+
*Intrinio::FundamentalsApi* | [**get_fundamental_by_id**](docs/FundamentalsApi.md#get_fundamental_by_id) | **GET** /fundamentals/{id} | Get a Fundamental by ID
|
|
78
|
+
*Intrinio::FundamentalsApi* | [**get_fundamental_reported_financials**](docs/FundamentalsApi.md#get_fundamental_reported_financials) | **GET** /fundamentals/{id}/reported_financials | Get Reported Financials for a Fundamental
|
|
79
|
+
*Intrinio::FundamentalsApi* | [**get_fundamental_standardized_financials**](docs/FundamentalsApi.md#get_fundamental_standardized_financials) | **GET** /fundamentals/{id}/standardized_financials | Get Standardized Financials for a Fundamental
|
|
80
|
+
*Intrinio::FundamentalsApi* | [**lookup_fundamental**](docs/FundamentalsApi.md#lookup_fundamental) | **GET** /fundamentals/lookup/{identifier}/{statement_code}/{fiscal_year}/{fiscal_period} | Lookup a Fundamental
|
|
81
|
+
*Intrinio::HistoricalDataApi* | [**get_historical_data**](docs/HistoricalDataApi.md#get_historical_data) | **GET** /historical_data/{identifier}/{tag} | Get Historical Data
|
|
82
|
+
*Intrinio::IndexApi* | [**get_all_economic_indices**](docs/IndexApi.md#get_all_economic_indices) | **GET** /indices/economic | Get All Economic Indices
|
|
83
|
+
*Intrinio::IndexApi* | [**get_all_sic_indices**](docs/IndexApi.md#get_all_sic_indices) | **GET** /indices/sic | Get All SIC Indices
|
|
84
|
+
*Intrinio::IndexApi* | [**get_all_stock_market_indices**](docs/IndexApi.md#get_all_stock_market_indices) | **GET** /indices/stock_market | Get All Stock Market Indices
|
|
85
|
+
*Intrinio::IndexApi* | [**get_economic_index_by_id**](docs/IndexApi.md#get_economic_index_by_id) | **GET** /indices/economic/{identifier} | Get an Economic Index by ID
|
|
86
|
+
*Intrinio::IndexApi* | [**get_economic_index_data_point_number**](docs/IndexApi.md#get_economic_index_data_point_number) | **GET** /indices/economic/{identifier}/data_point/{tag}/number | Get Economic Index Data Point (Number)
|
|
87
|
+
*Intrinio::IndexApi* | [**get_economic_index_data_point_text**](docs/IndexApi.md#get_economic_index_data_point_text) | **GET** /indices/economic/{identifier}/data_point/{tag}/text | Get Economic Index Data Point (Text)
|
|
88
|
+
*Intrinio::IndexApi* | [**get_economic_index_historical_data**](docs/IndexApi.md#get_economic_index_historical_data) | **GET** /indices/economic/{identifier}/historical_data/{tag} | Get Economic Index Historical Data
|
|
89
|
+
*Intrinio::IndexApi* | [**get_sic_index_by_id**](docs/IndexApi.md#get_sic_index_by_id) | **GET** /indices/sic/{identifier} | Get an SIC Index by ID
|
|
90
|
+
*Intrinio::IndexApi* | [**get_sic_index_data_point_number**](docs/IndexApi.md#get_sic_index_data_point_number) | **GET** /indices/sic/{identifier}/data_point/{tag}/number | Get SIC Index Data Point (Number)
|
|
91
|
+
*Intrinio::IndexApi* | [**get_sic_index_data_point_text**](docs/IndexApi.md#get_sic_index_data_point_text) | **GET** /indices/sic/{identifier}/data_point/{tag}/text | Get SIC Index Data Point (Text)
|
|
92
|
+
*Intrinio::IndexApi* | [**get_sic_index_historical_data**](docs/IndexApi.md#get_sic_index_historical_data) | **GET** /indices/sic/{identifier}/historical_data/{tag} | Get SIC Index Historical Data
|
|
93
|
+
*Intrinio::IndexApi* | [**get_stock_market_index_by_id**](docs/IndexApi.md#get_stock_market_index_by_id) | **GET** /indices/stock_market/{identifier} | Get a Stock Market Index by ID
|
|
94
|
+
*Intrinio::IndexApi* | [**get_stock_market_index_data_point_number**](docs/IndexApi.md#get_stock_market_index_data_point_number) | **GET** /indices/stock_market/{identifier}/data_point/{tag}/number | Get Stock Market Index Data Point (Number)
|
|
95
|
+
*Intrinio::IndexApi* | [**get_stock_market_index_data_point_text**](docs/IndexApi.md#get_stock_market_index_data_point_text) | **GET** /indices/stock_market/{identifier}/data_point/{tag}/text | Get Stock Market Index Data Point (Text)
|
|
96
|
+
*Intrinio::IndexApi* | [**get_stock_market_index_historical_data**](docs/IndexApi.md#get_stock_market_index_historical_data) | **GET** /indices/stock_market/{identifier}/historical_data/{tag} | Get Stock Market Index Historical Data
|
|
97
|
+
*Intrinio::IndexApi* | [**search_economic_indices**](docs/IndexApi.md#search_economic_indices) | **GET** /indices/economic/search | Search Economic Indices
|
|
98
|
+
*Intrinio::IndexApi* | [**search_sic_indices**](docs/IndexApi.md#search_sic_indices) | **GET** /indices/sic/search | Search SIC Indices
|
|
99
|
+
*Intrinio::IndexApi* | [**search_stock_markets_indices**](docs/IndexApi.md#search_stock_markets_indices) | **GET** /indices/stock_market/search | Search Stock Market Indices
|
|
100
|
+
*Intrinio::SecurityApi* | [**get_all_securities**](docs/SecurityApi.md#get_all_securities) | **GET** /securities | Get All Securiites
|
|
101
|
+
*Intrinio::SecurityApi* | [**get_security_by_id**](docs/SecurityApi.md#get_security_by_id) | **GET** /securities/{identifier} | Get a Security by ID
|
|
102
|
+
*Intrinio::SecurityApi* | [**get_security_data_point_number**](docs/SecurityApi.md#get_security_data_point_number) | **GET** /securities/{identifier}/data_point/{tag}/number | Get Security Data Point (Number)
|
|
103
|
+
*Intrinio::SecurityApi* | [**get_security_data_point_text**](docs/SecurityApi.md#get_security_data_point_text) | **GET** /securities/{identifier}/data_point/{tag}/text | Get Security Data Point (Text)
|
|
104
|
+
*Intrinio::SecurityApi* | [**get_security_historical_data**](docs/SecurityApi.md#get_security_historical_data) | **GET** /securities/{identifier}/historical_data/{tag} | Get Security Historical Data
|
|
105
|
+
*Intrinio::SecurityApi* | [**get_security_stock_price_adjustments**](docs/SecurityApi.md#get_security_stock_price_adjustments) | **GET** /securities/{identifier}/prices/adjustments | Get Stock Price Adjustments for Security
|
|
106
|
+
*Intrinio::SecurityApi* | [**get_security_stock_prices**](docs/SecurityApi.md#get_security_stock_prices) | **GET** /securities/{identifier}/prices | Get Stock Prices for Security
|
|
107
|
+
*Intrinio::SecurityApi* | [**screen_securities**](docs/SecurityApi.md#screen_securities) | **POST** /securities/screen | Screen Securities
|
|
108
|
+
*Intrinio::SecurityApi* | [**search_securities**](docs/SecurityApi.md#search_securities) | **GET** /securities/search | Search Securities
|
|
109
|
+
*Intrinio::StockExchangeApi* | [**filter_stock_exchanges**](docs/StockExchangeApi.md#filter_stock_exchanges) | **GET** /stock_exchanges/filter | Filter Stock Exchanges
|
|
110
|
+
*Intrinio::StockExchangeApi* | [**get_all_stock_exchanges**](docs/StockExchangeApi.md#get_all_stock_exchanges) | **GET** /stock_exchanges | Get All Stock Exchanges
|
|
111
|
+
*Intrinio::StockExchangeApi* | [**get_stock_exchange_by_id**](docs/StockExchangeApi.md#get_stock_exchange_by_id) | **GET** /stock_exchanges/{identifier} | Get Stock Exchange by ID
|
|
112
|
+
*Intrinio::StockExchangeApi* | [**get_stock_exchange_price_adjustments**](docs/StockExchangeApi.md#get_stock_exchange_price_adjustments) | **GET** /stock_exchanges/{identifier}/prices/adjustments | Get Stock Price Adjustments by Exchange
|
|
113
|
+
*Intrinio::StockExchangeApi* | [**get_stock_exchange_prices**](docs/StockExchangeApi.md#get_stock_exchange_prices) | **GET** /stock_exchanges/{identifier}/prices | Get Stock Prices by Exchange
|
|
114
|
+
*Intrinio::StockExchangeApi* | [**get_stock_exchange_securities**](docs/StockExchangeApi.md#get_stock_exchange_securities) | **GET** /stock_exchanges/{identifier}/securities | Get Securities by Exchange
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
## Models
|
|
118
|
+
|
|
119
|
+
- [Intrinio::ApiResponseCompanies](docs/ApiResponseCompanies.md)
|
|
120
|
+
- [Intrinio::ApiResponseCompanyFilings](docs/ApiResponseCompanyFilings.md)
|
|
121
|
+
- [Intrinio::ApiResponseCompanyFundamentals](docs/ApiResponseCompanyFundamentals.md)
|
|
122
|
+
- [Intrinio::ApiResponseCompanyHistoricalData](docs/ApiResponseCompanyHistoricalData.md)
|
|
123
|
+
- [Intrinio::ApiResponseCompanyNews](docs/ApiResponseCompanyNews.md)
|
|
124
|
+
- [Intrinio::ApiResponseCompanySecurities](docs/ApiResponseCompanySecurities.md)
|
|
125
|
+
- [Intrinio::ApiResponseDataTags](docs/ApiResponseDataTags.md)
|
|
126
|
+
- [Intrinio::ApiResponseEconomicIndexHistoricalData](docs/ApiResponseEconomicIndexHistoricalData.md)
|
|
127
|
+
- [Intrinio::ApiResponseEconomicIndices](docs/ApiResponseEconomicIndices.md)
|
|
128
|
+
- [Intrinio::ApiResponseFilings](docs/ApiResponseFilings.md)
|
|
129
|
+
- [Intrinio::ApiResponseHistoricalData](docs/ApiResponseHistoricalData.md)
|
|
130
|
+
- [Intrinio::ApiResponseNews](docs/ApiResponseNews.md)
|
|
131
|
+
- [Intrinio::ApiResponseReportedFinancials](docs/ApiResponseReportedFinancials.md)
|
|
132
|
+
- [Intrinio::ApiResponseSICIndexHistoricalData](docs/ApiResponseSICIndexHistoricalData.md)
|
|
133
|
+
- [Intrinio::ApiResponseSICIndices](docs/ApiResponseSICIndices.md)
|
|
134
|
+
- [Intrinio::ApiResponseSecurities](docs/ApiResponseSecurities.md)
|
|
135
|
+
- [Intrinio::ApiResponseSecurityHistoricalData](docs/ApiResponseSecurityHistoricalData.md)
|
|
136
|
+
- [Intrinio::ApiResponseSecurityStockPriceAdjustments](docs/ApiResponseSecurityStockPriceAdjustments.md)
|
|
137
|
+
- [Intrinio::ApiResponseSecurityStockPrices](docs/ApiResponseSecurityStockPrices.md)
|
|
138
|
+
- [Intrinio::ApiResponseStandardizedFinancials](docs/ApiResponseStandardizedFinancials.md)
|
|
139
|
+
- [Intrinio::ApiResponseStockExchangeSecurities](docs/ApiResponseStockExchangeSecurities.md)
|
|
140
|
+
- [Intrinio::ApiResponseStockExchangeStockPriceAdjustments](docs/ApiResponseStockExchangeStockPriceAdjustments.md)
|
|
141
|
+
- [Intrinio::ApiResponseStockExchangeStockPrices](docs/ApiResponseStockExchangeStockPrices.md)
|
|
142
|
+
- [Intrinio::ApiResponseStockExchanges](docs/ApiResponseStockExchanges.md)
|
|
143
|
+
- [Intrinio::ApiResponseStockMarketIndexHistoricalData](docs/ApiResponseStockMarketIndexHistoricalData.md)
|
|
144
|
+
- [Intrinio::ApiResponseStockMarketIndices](docs/ApiResponseStockMarketIndices.md)
|
|
145
|
+
- [Intrinio::Company](docs/Company.md)
|
|
146
|
+
- [Intrinio::CompanyFiling](docs/CompanyFiling.md)
|
|
147
|
+
- [Intrinio::CompanyNews](docs/CompanyNews.md)
|
|
148
|
+
- [Intrinio::CompanyNewsSummary](docs/CompanyNewsSummary.md)
|
|
149
|
+
- [Intrinio::CompanySummary](docs/CompanySummary.md)
|
|
150
|
+
- [Intrinio::DataTag](docs/DataTag.md)
|
|
151
|
+
- [Intrinio::DataTagSummary](docs/DataTagSummary.md)
|
|
152
|
+
- [Intrinio::EconomicIndex](docs/EconomicIndex.md)
|
|
153
|
+
- [Intrinio::EconomicIndexSummary](docs/EconomicIndexSummary.md)
|
|
154
|
+
- [Intrinio::Filing](docs/Filing.md)
|
|
155
|
+
- [Intrinio::FilingSummary](docs/FilingSummary.md)
|
|
156
|
+
- [Intrinio::Fundamental](docs/Fundamental.md)
|
|
157
|
+
- [Intrinio::FundamentalSummary](docs/FundamentalSummary.md)
|
|
158
|
+
- [Intrinio::HistoricalData](docs/HistoricalData.md)
|
|
159
|
+
- [Intrinio::ReportedFinancial](docs/ReportedFinancial.md)
|
|
160
|
+
- [Intrinio::ReportedTag](docs/ReportedTag.md)
|
|
161
|
+
- [Intrinio::SICIndex](docs/SICIndex.md)
|
|
162
|
+
- [Intrinio::Security](docs/Security.md)
|
|
163
|
+
- [Intrinio::SecurityScreenClause](docs/SecurityScreenClause.md)
|
|
164
|
+
- [Intrinio::SecurityScreenGroup](docs/SecurityScreenGroup.md)
|
|
165
|
+
- [Intrinio::SecurityScreenResult](docs/SecurityScreenResult.md)
|
|
166
|
+
- [Intrinio::SecurityScreenResultData](docs/SecurityScreenResultData.md)
|
|
167
|
+
- [Intrinio::SecuritySummary](docs/SecuritySummary.md)
|
|
168
|
+
- [Intrinio::StandardizedFinancial](docs/StandardizedFinancial.md)
|
|
169
|
+
- [Intrinio::StockExchange](docs/StockExchange.md)
|
|
170
|
+
- [Intrinio::StockMarketIndex](docs/StockMarketIndex.md)
|
|
171
|
+
- [Intrinio::StockMarketIndexSummary](docs/StockMarketIndexSummary.md)
|
|
172
|
+
- [Intrinio::StockPrice](docs/StockPrice.md)
|
|
173
|
+
- [Intrinio::StockPriceAdjustment](docs/StockPriceAdjustment.md)
|
|
174
|
+
- [Intrinio::StockPriceAdjustmentSummary](docs/StockPriceAdjustmentSummary.md)
|
|
175
|
+
- [Intrinio::StockPriceSummary](docs/StockPriceSummary.md)
|
|
176
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Intrinio::ApiResponseCompanies
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**companies** | [**Array<CompanySummary>**](CompanySummary.md) | | [optional]
|
|
7
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
8
|
+
|
|
9
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseCompanyFilings
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**filings** | [**Array<FilingSummary>**](FilingSummary.md) | | [optional]
|
|
7
|
+
**company** | [**CompanySummary**](CompanySummary.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseCompanyFundamentals
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**fundamentals** | [**Array<FundamentalSummary>**](FundamentalSummary.md) | | [optional]
|
|
7
|
+
**company** | [**CompanySummary**](CompanySummary.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseCompanyHistoricalData
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**historical_data** | [**Array<HistoricalData>**](HistoricalData.md) | | [optional]
|
|
7
|
+
**company** | [**CompanySummary**](CompanySummary.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseCompanyNews
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**news** | [**Array<CompanyNews>**](CompanyNews.md) | | [optional]
|
|
7
|
+
**company** | [**CompanySummary**](CompanySummary.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseCompanySecurities
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**securities** | [**Array<SecuritySummary>**](SecuritySummary.md) | | [optional]
|
|
7
|
+
**company** | [**CompanySummary**](CompanySummary.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Intrinio::ApiResponseDataTags
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**tags** | [**Array<DataTag>**](DataTag.md) | | [optional]
|
|
7
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
8
|
+
|
|
9
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseEconomicIndexHistoricalData
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**historical_data** | [**Array<HistoricalData>**](HistoricalData.md) | | [optional]
|
|
7
|
+
**index** | [**EconomicIndexSummary**](EconomicIndexSummary.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Intrinio::ApiResponseEconomicIndices
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**indices** | [**Array<EconomicIndexSummary>**](EconomicIndexSummary.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::ApiResponseFilings
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**filings** | [**Array<Filing>**](Filing.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::ApiResponseHistoricalData
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**historical_data** | [**Array<HistoricalData>**](HistoricalData.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::ApiResponseNews
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**news** | [**Array<CompanyNews>**](CompanyNews.md) | | [optional]
|
|
7
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
8
|
+
|
|
9
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseReportedFinancials
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**reported_financials** | [**Array<ReportedFinancial>**](ReportedFinancial.md) | | [optional]
|
|
7
|
+
**fundamental** | [**Fundamental**](Fundamental.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseSICIndexHistoricalData
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**historical_data** | [**Array<HistoricalData>**](HistoricalData.md) | | [optional]
|
|
7
|
+
**index** | [**SICIndex**](SICIndex.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Intrinio::ApiResponseSICIndices
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**indices** | [**Array<SICIndex>**](SICIndex.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::ApiResponseSecurities
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**securities** | [**Array<SecuritySummary>**](SecuritySummary.md) | | [optional]
|
|
7
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
8
|
+
|
|
9
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseSecurityHistoricalData
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**historical_data** | [**Array<HistoricalData>**](HistoricalData.md) | | [optional]
|
|
7
|
+
**security** | [**SecuritySummary**](SecuritySummary.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseSecurityStockPriceAdjustments
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**stock_price_adjustments** | [**Array<StockPriceAdjustment>**](StockPriceAdjustment.md) | The stock price adjustments for the Security | [optional]
|
|
7
|
+
**security** | [**SecuritySummary**](SecuritySummary.md) | The Security resolved from the given identifier | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseSecurityStockPrices
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**stock_prices** | [**Array<StockPriceSummary>**](StockPriceSummary.md) | The stock prices for the Security | [optional]
|
|
7
|
+
**security** | [**SecuritySummary**](SecuritySummary.md) | The Security resolved from the given identifier | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseStandardizedFinancials
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**standardized_financials** | [**Array<StandardizedFinancial>**](StandardizedFinancial.md) | | [optional]
|
|
7
|
+
**fundamental** | [**Fundamental**](Fundamental.md) | | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseStockExchangeSecurities
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**securities** | [**Array<SecuritySummary>**](SecuritySummary.md) | The securities traded on the Stock Exchange | [optional]
|
|
7
|
+
**stock_exchange** | [**StockExchange**](StockExchange.md) | The Stock Exchange resolved from the given identifier | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Intrinio::ApiResponseStockExchangeStockPriceAdjustments
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**stock_price_adjustments** | [**Array<StockPriceAdjustment>**](StockPriceAdjustment.md) | The stock price adjustments for all Securities traded on the Stock Exchange on the given date | [optional]
|
|
7
|
+
**stock_exchange** | [**StockExchange**](StockExchange.md) | The Stock Exchange resolved from the given identifier | [optional]
|
|
8
|
+
**next_page** | **String** | The token required to request the next page of the data | [optional]
|
|
9
|
+
|
|
10
|
+
|