intrinio-sdk 6.27.2 → 6.27.3
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.
- package/README.md +25 -3
- package/docs/ApiResponseEodIndexPrices.md +29 -0
- package/docs/ApiResponseEodIndexPricesAll.md +25 -0
- package/docs/ApiResponseIndex.md +22 -0
- package/docs/ApiResponseIndices.md +25 -0
- package/docs/ApiResponseOptionsAggregates.md +25 -0
- package/docs/ApiResponseRealtimeIndexPrices.md +25 -0
- package/docs/ApiResponseZacksEBITDAConsensus.md +25 -0
- package/docs/ApiResponseZacksForwardPEs.md +25 -0
- package/docs/CompanyApi.md +5 -3
- package/docs/CompanyNews.md +1 -0
- package/docs/CompanyNewsSummary.md +1 -0
- package/docs/ETFsApi.md +7 -2
- package/docs/EodIndexPrice.md +30 -0
- package/docs/EodIndexPriceSummary.md +26 -0
- package/docs/FundamentalsApi.md +2 -0
- package/docs/IndexApi.md +414 -3
- package/docs/OptionsAggregate.md +23 -0
- package/docs/OptionsApi.md +81 -0
- package/docs/ZacksApi.md +246 -0
- package/docs/ZacksEBITDAConsensus.md +31 -0
- package/docs/ZacksForwardPE.md +29 -0
- package/package.json +1 -1
- package/src/ApiClient.js +2 -2
- package/src/api/BulkDownloadsApi.js +2 -2
- package/src/api/CompanyApi.js +11 -8
- package/src/api/DataPointApi.js +2 -2
- package/src/api/DataTagApi.js +2 -2
- package/src/api/ESGApi.js +2 -2
- package/src/api/ETFsApi.js +11 -5
- package/src/api/FilingApi.js +2 -2
- package/src/api/ForexApi.js +2 -2
- package/src/api/FundamentalsApi.js +5 -2
- package/src/api/HistoricalDataApi.js +2 -2
- package/src/api/IndexApi.js +282 -10
- package/src/api/InsiderTransactionFilingsApi.js +2 -2
- package/src/api/MarketApi.js +2 -2
- package/src/api/MunicipalityApi.js +2 -2
- package/src/api/OptionsApi.js +58 -6
- package/src/api/OwnersApi.js +2 -2
- package/src/api/SecurityApi.js +2 -2
- package/src/api/StockExchangeApi.js +2 -2
- package/src/api/TechnicalApi.js +2 -2
- package/src/api/ZacksApi.js +170 -6
- package/src/index.js +70 -5
- package/src/model/AccumulationDistributionIndexTechnicalValue.js +2 -2
- package/src/model/ApiResponseBulkDownloadLinks.js +2 -2
- package/src/model/ApiResponseCompanies.js +2 -2
- package/src/model/ApiResponseCompaniesSearch.js +2 -2
- package/src/model/ApiResponseCompanyAnswers.js +2 -2
- package/src/model/ApiResponseCompanyDailyMetrics.js +2 -2
- package/src/model/ApiResponseCompanyFilings.js +2 -2
- package/src/model/ApiResponseCompanyFundamentals.js +2 -2
- package/src/model/ApiResponseCompanyHistoricalData.js +2 -2
- package/src/model/ApiResponseCompanyInsiderTransactionFilings.js +2 -2
- package/src/model/ApiResponseCompanyNews.js +2 -2
- package/src/model/ApiResponseCompanyPublicFloatResult.js +2 -2
- package/src/model/ApiResponseCompanyRecognize.js +2 -2
- package/src/model/ApiResponseCompanySecurities.js +2 -2
- package/src/model/ApiResponseCompanySharesOutstanding.js +2 -2
- package/src/model/ApiResponseDataTags.js +2 -2
- package/src/model/ApiResponseDataTagsSearch.js +2 -2
- package/src/model/ApiResponseESGCompanies.js +2 -2
- package/src/model/ApiResponseESGCompanyComprehensiveRatingHistory.js +2 -2
- package/src/model/ApiResponseESGCompanyRatingHistory.js +2 -2
- package/src/model/ApiResponseESGLatest.js +2 -2
- package/src/model/ApiResponseESGLatestComprehensive.js +2 -2
- package/src/model/ApiResponseETFHoldings.js +2 -2
- package/src/model/ApiResponseETFs.js +2 -2
- package/src/model/ApiResponseEconomicIndexHistoricalData.js +2 -2
- package/src/model/ApiResponseEconomicIndices.js +2 -2
- package/src/model/ApiResponseEconomicIndicesSearch.js +2 -2
- package/src/model/ApiResponseEodIndexPrices.js +99 -0
- package/src/model/ApiResponseEodIndexPricesAll.js +90 -0
- package/src/model/ApiResponseFilingAnswers.js +2 -2
- package/src/model/ApiResponseFilingFundamentals.js +2 -2
- package/src/model/ApiResponseFilingNotes.js +2 -2
- package/src/model/ApiResponseFilingNotesSearch.js +2 -2
- package/src/model/ApiResponseFilings.js +2 -2
- package/src/model/ApiResponseForexCurrencies.js +2 -2
- package/src/model/ApiResponseForexPairs.js +2 -2
- package/src/model/ApiResponseForexPrices.js +2 -2
- package/src/model/ApiResponseHistoricalData.js +2 -2
- package/src/model/ApiResponseIndex.js +91 -0
- package/src/model/ApiResponseIndices.js +90 -0
- package/src/model/ApiResponseInitialPublicOfferings.js +2 -2
- package/src/model/ApiResponseInsiderTransactionFilings.js +2 -2
- package/src/model/ApiResponseMunicipalities.js +2 -2
- package/src/model/ApiResponseMunicipalitiyFinancials.js +2 -2
- package/src/model/ApiResponseNews.js +2 -2
- package/src/model/ApiResponseOptionPrices.js +2 -2
- package/src/model/ApiResponseOptions.js +2 -2
- package/src/model/ApiResponseOptionsAggregates.js +91 -0
- package/src/model/ApiResponseOptionsChain.js +2 -2
- package/src/model/ApiResponseOptionsChainEod.js +2 -2
- package/src/model/ApiResponseOptionsChainRealtime.js +2 -2
- package/src/model/ApiResponseOptionsExpirations.js +2 -2
- package/src/model/ApiResponseOptionsPriceRealtime.js +2 -2
- package/src/model/ApiResponseOptionsPricesBatchRealtime.js +2 -2
- package/src/model/ApiResponseOptionsPricesEod.js +2 -2
- package/src/model/ApiResponseOptionsRealtime.js +2 -2
- package/src/model/ApiResponseOptionsStatsRealtime.js +2 -2
- package/src/model/ApiResponseOptionsTickers.js +2 -2
- package/src/model/ApiResponseOptionsUnusualActivity.js +2 -2
- package/src/model/ApiResponseOwnerInsiderTransactionFilings.js +2 -2
- package/src/model/ApiResponseOwnerInstitutionalHoldings.js +2 -2
- package/src/model/ApiResponseOwners.js +2 -2
- package/src/model/ApiResponseRealtimeIndexPrices.js +90 -0
- package/src/model/ApiResponseReportedFinancials.js +2 -2
- package/src/model/ApiResponseSICIndexHistoricalData.js +2 -2
- package/src/model/ApiResponseSICIndices.js +2 -2
- package/src/model/ApiResponseSICIndicesSearch.js +2 -2
- package/src/model/ApiResponseSecurities.js +2 -2
- package/src/model/ApiResponseSecuritiesSearch.js +2 -2
- package/src/model/ApiResponseSecurityAccumulationDistributionIndex.js +2 -2
- package/src/model/ApiResponseSecurityAverageDailyTradingVolume.js +2 -2
- package/src/model/ApiResponseSecurityAverageDirectionalIndex.js +2 -2
- package/src/model/ApiResponseSecurityAverageTrueRange.js +2 -2
- package/src/model/ApiResponseSecurityAwesomeOscillator.js +2 -2
- package/src/model/ApiResponseSecurityBollingerBands.js +2 -2
- package/src/model/ApiResponseSecurityChaikinMoneyFlow.js +2 -2
- package/src/model/ApiResponseSecurityCommodityChannelIndex.js +2 -2
- package/src/model/ApiResponseSecurityDetrendedPriceOscillator.js +2 -2
- package/src/model/ApiResponseSecurityDonchianChannel.js +2 -2
- package/src/model/ApiResponseSecurityEaseOfMovement.js +2 -2
- package/src/model/ApiResponseSecurityForceIndex.js +2 -2
- package/src/model/ApiResponseSecurityHistoricalData.js +2 -2
- package/src/model/ApiResponseSecurityIchimokuKinkoHyo.js +2 -2
- package/src/model/ApiResponseSecurityInstitutionalOwnership.js +2 -2
- package/src/model/ApiResponseSecurityIntervalPrices.js +2 -2
- package/src/model/ApiResponseSecurityIntradayPrices.js +2 -2
- package/src/model/ApiResponseSecurityKeltnerChannel.js +2 -2
- package/src/model/ApiResponseSecurityKnowSureThing.js +2 -2
- package/src/model/ApiResponseSecurityMassIndex.js +2 -2
- package/src/model/ApiResponseSecurityMoneyFlowIndex.js +2 -2
- package/src/model/ApiResponseSecurityMovingAverageConvergenceDivergence.js +2 -2
- package/src/model/ApiResponseSecurityNegativeVolumeIndex.js +2 -2
- package/src/model/ApiResponseSecurityOnBalanceVolume.js +2 -2
- package/src/model/ApiResponseSecurityOnBalanceVolumeMean.js +2 -2
- package/src/model/ApiResponseSecurityRelativeStrengthIndex.js +2 -2
- package/src/model/ApiResponseSecuritySimpleMovingAverage.js +2 -2
- package/src/model/ApiResponseSecurityStochasticOscillator.js +2 -2
- package/src/model/ApiResponseSecurityStockPriceAdjustments.js +2 -2
- package/src/model/ApiResponseSecurityStockPrices.js +2 -2
- package/src/model/ApiResponseSecurityTripleExponentialAverage.js +2 -2
- package/src/model/ApiResponseSecurityTrueStrengthIndex.js +2 -2
- package/src/model/ApiResponseSecurityUltimateOscillator.js +2 -2
- package/src/model/ApiResponseSecurityVolumePriceTrend.js +2 -2
- package/src/model/ApiResponseSecurityVolumeWeightedAveragePrice.js +2 -2
- package/src/model/ApiResponseSecurityVortexIndicator.js +2 -2
- package/src/model/ApiResponseSecurityWilliamsR.js +2 -2
- package/src/model/ApiResponseSecurityZacksAnalystRatings.js +2 -2
- package/src/model/ApiResponseSecurityZacksAnalystRatingsSnapshot.js +2 -2
- package/src/model/ApiResponseSecurityZacksEPSSurprises.js +2 -2
- package/src/model/ApiResponseSecurityZacksSalesSurprises.js +2 -2
- package/src/model/ApiResponseStandardizedFinancials.js +2 -2
- package/src/model/ApiResponseStandardizedFinancialsDimensions.js +2 -2
- package/src/model/ApiResponseStockExchangeRealtimeStockPrices.js +2 -2
- package/src/model/ApiResponseStockExchangeSecurities.js +2 -2
- package/src/model/ApiResponseStockExchangeStockPriceAdjustments.js +2 -2
- package/src/model/ApiResponseStockExchangeStockPrices.js +2 -2
- package/src/model/ApiResponseStockExchanges.js +2 -2
- package/src/model/ApiResponseStockMarketIndexHistoricalData.js +2 -2
- package/src/model/ApiResponseStockMarketIndices.js +2 -2
- package/src/model/ApiResponseStockMarketIndicesSearch.js +2 -2
- package/src/model/ApiResponseZacksAnalystRatings.js +2 -2
- package/src/model/ApiResponseZacksEBITDAConsensus.js +91 -0
- package/src/model/ApiResponseZacksEPSEstimates.js +2 -2
- package/src/model/ApiResponseZacksEPSGrowthRates.js +2 -2
- package/src/model/ApiResponseZacksEPSSurprises.js +2 -2
- package/src/model/ApiResponseZacksETFHoldings.js +2 -2
- package/src/model/ApiResponseZacksForwardPEs.js +91 -0
- package/src/model/ApiResponseZacksInstitutionalHoldingCompanies.js +2 -2
- package/src/model/ApiResponseZacksInstitutionalHoldingOwners.js +2 -2
- package/src/model/ApiResponseZacksInstitutionalHoldings.js +2 -2
- package/src/model/ApiResponseZacksLongTermGrowthRates.js +2 -2
- package/src/model/ApiResponseZacksSalesEstimates.js +2 -2
- package/src/model/ApiResponseZacksSalesSurprises.js +2 -2
- package/src/model/ApiResponseZacksTargetPriceConsensuses.js +2 -2
- package/src/model/AverageDailyTradingVolumeTechnicalValue.js +2 -2
- package/src/model/AverageDirectionalIndexTechnicalValue.js +2 -2
- package/src/model/AverageTrueRangeTechnicalValue.js +2 -2
- package/src/model/AwesomeOscillatorTechnicalValue.js +2 -2
- package/src/model/BollingerBandsTechnicalValue.js +2 -2
- package/src/model/BulkDownloadLinks.js +2 -2
- package/src/model/BulkDownloadSummary.js +2 -2
- package/src/model/ChaikinMoneyFlowTechnicalValue.js +2 -2
- package/src/model/CommodityChannelIndexTechnicalValue.js +2 -2
- package/src/model/Company.js +2 -2
- package/src/model/CompanyDailyMetric.js +2 -2
- package/src/model/CompanyFiling.js +2 -2
- package/src/model/CompanyInitialPublicOffering.js +2 -2
- package/src/model/CompanyNews.js +11 -2
- package/src/model/CompanyNewsSummary.js +11 -2
- package/src/model/CompanyPublicFloat.js +2 -2
- package/src/model/CompanySharesOutstanding.js +2 -2
- package/src/model/CompanySummary.js +2 -2
- package/src/model/DataTag.js +2 -2
- package/src/model/DataTagSummary.js +2 -2
- package/src/model/DetrendedPriceOscillatorTechnicalValue.js +2 -2
- package/src/model/DividendRecord.js +2 -2
- package/src/model/DonchianChannelTechnicalValue.js +2 -2
- package/src/model/ESGCompanySummary.js +2 -2
- package/src/model/ESGComprehensiveRating.js +2 -2
- package/src/model/ESGComprehensiveRatingWithCompany.js +2 -2
- package/src/model/ESGRating.js +2 -2
- package/src/model/ESGRatingWithCompany.js +2 -2
- package/src/model/ETF.js +2 -2
- package/src/model/ETFAnalytics.js +2 -2
- package/src/model/ETFHolding.js +2 -2
- package/src/model/ETFStats.js +2 -2
- package/src/model/ETFSummary.js +2 -2
- package/src/model/EarningsRecord.js +2 -2
- package/src/model/EaseOfMovementTechnicalValue.js +2 -2
- package/src/model/EconomicIndex.js +2 -2
- package/src/model/EconomicIndexSummary.js +2 -2
- package/src/model/EodIndexPrice.js +137 -0
- package/src/model/EodIndexPriceSummary.js +128 -0
- package/src/model/Filing.js +2 -2
- package/src/model/FilingNote.js +2 -2
- package/src/model/FilingNoteFiling.js +2 -2
- package/src/model/FilingNoteSummary.js +2 -2
- package/src/model/FilingSummary.js +2 -2
- package/src/model/ForceIndexTechnicalValue.js +2 -2
- package/src/model/ForexCurrency.js +2 -2
- package/src/model/ForexPair.js +2 -2
- package/src/model/ForexPrice.js +2 -2
- package/src/model/Fundamental.js +2 -2
- package/src/model/FundamentalSummary.js +2 -2
- package/src/model/HistoricalData.js +2 -2
- package/src/model/IchimokuKinkoHyoTechnicalValue.js +2 -2
- package/src/model/InsiderTransaction.js +2 -2
- package/src/model/InsiderTransactionFiling.js +2 -2
- package/src/model/InstitutionalHolding.js +2 -2
- package/src/model/InstitutionalOwnership.js +2 -2
- package/src/model/IntradayStockPrice.js +2 -2
- package/src/model/KeltnerChannelTechnicalValue.js +2 -2
- package/src/model/KnowSureThingTechnicalValue.js +2 -2
- package/src/model/MarketStatusResult.js +2 -2
- package/src/model/MassIndexTechnicalValue.js +2 -2
- package/src/model/MoneyFlowIndexTechnicalValue.js +2 -2
- package/src/model/MovingAverageConvergenceDivergenceTechnicalValue.js +2 -2
- package/src/model/Municipality.js +2 -2
- package/src/model/MunicipalityFinancial.js +2 -2
- package/src/model/NegativeVolumeIndexTechnicalValue.js +2 -2
- package/src/model/NewsTopic.js +2 -2
- package/src/model/OnBalanceVolumeMeanTechnicalValue.js +2 -2
- package/src/model/OnBalanceVolumeTechnicalValue.js +2 -2
- package/src/model/Option.js +2 -2
- package/src/model/OptionChain.js +2 -2
- package/src/model/OptionChainEod.js +2 -2
- package/src/model/OptionChainRealtime.js +2 -2
- package/src/model/OptionContractsList.js +2 -2
- package/src/model/OptionEod.js +2 -2
- package/src/model/OptionFactorsRealtime.js +2 -2
- package/src/model/OptionInterval.js +2 -2
- package/src/model/OptionIntervalMover.js +2 -2
- package/src/model/OptionIntervalsMoversResult.js +2 -2
- package/src/model/OptionIntervalsResult.js +2 -2
- package/src/model/OptionPrice.js +2 -2
- package/src/model/OptionPriceBatchRealtime.js +2 -2
- package/src/model/OptionPriceEod.js +2 -2
- package/src/model/OptionPriceRealtime.js +2 -2
- package/src/model/OptionPriceRealtimeExtended.js +2 -2
- package/src/model/OptionRealtime.js +2 -2
- package/src/model/OptionSnapshotGroup.js +2 -2
- package/src/model/OptionSnapshotsResult.js +2 -2
- package/src/model/OptionStatsRealtime.js +2 -2
- package/src/model/OptionUnusualTrade.js +2 -2
- package/src/model/OptionsAggregate.js +101 -0
- package/src/model/Owner.js +2 -2
- package/src/model/OwnerSummary.js +2 -2
- package/src/model/RealtimeIndexPrice.js +2 -2
- package/src/model/RealtimeIndexPriceIndex.js +2 -2
- package/src/model/RealtimeStockPrice.js +2 -2
- package/src/model/RealtimeStockPriceSecurity.js +2 -2
- package/src/model/RelativeStrengthIndexTechnicalValue.js +2 -2
- package/src/model/ReportedFinancial.js +2 -2
- package/src/model/ReportedFinancialDimension.js +2 -2
- package/src/model/ReportedTag.js +2 -2
- package/src/model/SICIndex.js +2 -2
- package/src/model/Security.js +2 -2
- package/src/model/SecurityHistory.js +2 -2
- package/src/model/SecurityHistoryListResult.js +2 -2
- package/src/model/SecurityIntervalMover.js +2 -2
- package/src/model/SecurityIntervalsMoversResult.js +2 -2
- package/src/model/SecurityReplayFileResult.js +2 -2
- package/src/model/SecurityScreenClause.js +2 -2
- package/src/model/SecurityScreenGroup.js +2 -2
- package/src/model/SecurityScreenResult.js +2 -2
- package/src/model/SecurityScreenResultData.js +2 -2
- package/src/model/SecuritySnapshotGroup.js +2 -2
- package/src/model/SecuritySnapshotsResult.js +2 -2
- package/src/model/SecuritySummary.js +2 -2
- package/src/model/SecurityTrades.js +2 -2
- package/src/model/SecurityTradesResult.js +2 -2
- package/src/model/SimpleMovingAverageTechnicalValue.js +2 -2
- package/src/model/StandardizedFinancial.js +2 -2
- package/src/model/StandardizedFinancialsDimension.js +2 -2
- package/src/model/StochasticOscillatorTechnicalValue.js +2 -2
- package/src/model/StockExchange.js +2 -2
- package/src/model/StockMarketIndex.js +2 -2
- package/src/model/StockMarketIndexSummary.js +2 -2
- package/src/model/StockPrice.js +2 -2
- package/src/model/StockPriceAdjustment.js +2 -2
- package/src/model/StockPriceAdjustmentSummary.js +2 -2
- package/src/model/StockPriceInterval.js +2 -2
- package/src/model/StockPriceSummary.js +2 -2
- package/src/model/TechnicalIndicator.js +2 -2
- package/src/model/TheaEntityAnswer.js +2 -2
- package/src/model/TheaSourceDocument.js +2 -2
- package/src/model/TripleExponentialAverageTechnicalValue.js +2 -2
- package/src/model/TrueStrengthIndexTechnicalValue.js +2 -2
- package/src/model/UltimateOscillatorTechnicalValue.js +2 -2
- package/src/model/VolumePriceTrendTechnicalValue.js +2 -2
- package/src/model/VolumeWeightedAveragePriceValue.js +2 -2
- package/src/model/VortexIndicatorTechnicalValue.js +2 -2
- package/src/model/WilliamsRTechnicalValue.js +2 -2
- package/src/model/ZacksAnalystRating.js +2 -2
- package/src/model/ZacksAnalystRatingSnapshot.js +2 -2
- package/src/model/ZacksAnalystRatingSummary.js +2 -2
- package/src/model/ZacksEBITDAConsensus.js +173 -0
- package/src/model/ZacksEPSEstimate.js +2 -2
- package/src/model/ZacksEPSGrowthRate.js +2 -2
- package/src/model/ZacksEPSSurprise.js +2 -2
- package/src/model/ZacksEPSSurpriseSummary.js +2 -2
- package/src/model/ZacksETFHolding.js +2 -2
- package/src/model/ZacksForwardPE.js +155 -0
- package/src/model/ZacksInstitutionalHolding.js +2 -2
- package/src/model/ZacksInstitutionalHoldingCompanyDetail.js +2 -2
- package/src/model/ZacksInstitutionalHoldingCompanySummary.js +2 -2
- package/src/model/ZacksInstitutionalHoldingHistoricalSummary.js +2 -2
- package/src/model/ZacksInstitutionalHoldingOwnerDetail.js +2 -2
- package/src/model/ZacksInstitutionalHoldingOwnerSummary.js +2 -2
- package/src/model/ZacksLongTermGrowthRate.js +2 -2
- package/src/model/ZacksSalesEstimate.js +2 -2
- package/src/model/ZacksSalesSurprise.js +2 -2
- package/src/model/ZacksSalesSurpriseSummary.js +2 -2
- package/src/model/ZacksTargetPriceConsensus.js +2 -2
- package/test/api/BulkDownloadsApi.spec.js +1 -1
- package/test/api/CompanyApi.spec.js +1 -1
- package/test/api/DataPointApi.spec.js +1 -1
- package/test/api/DataTagApi.spec.js +1 -1
- package/test/api/ESGApi.spec.js +1 -1
- package/test/api/ETFsApi.spec.js +1 -1
- package/test/api/FilingApi.spec.js +1 -1
- package/test/api/ForexApi.spec.js +1 -1
- package/test/api/FundamentalsApi.spec.js +1 -1
- package/test/api/HistoricalDataApi.spec.js +1 -1
- package/test/api/IndexApi.spec.js +51 -1
- package/test/api/InsiderTransactionFilingsApi.spec.js +1 -1
- package/test/api/MarketApi.spec.js +1 -1
- package/test/api/MunicipalityApi.spec.js +1 -1
- package/test/api/OptionsApi.spec.js +11 -1
- package/test/api/OwnersApi.spec.js +1 -1
- package/test/api/SecurityApi.spec.js +1 -1
- package/test/api/StockExchangeApi.spec.js +1 -1
- package/test/api/TechnicalApi.spec.js +1 -1
- package/test/api/ZacksApi.spec.js +31 -1
- package/test/model/AccumulationDistributionIndexTechnicalValue.spec.js +1 -1
- package/test/model/ApiResponseBulkDownloadLinks.spec.js +1 -1
- package/test/model/ApiResponseCompanies.spec.js +1 -1
- package/test/model/ApiResponseCompaniesSearch.spec.js +1 -1
- package/test/model/ApiResponseCompanyAnswers.spec.js +1 -1
- package/test/model/ApiResponseCompanyDailyMetrics.spec.js +1 -1
- package/test/model/ApiResponseCompanyFilings.spec.js +1 -1
- package/test/model/ApiResponseCompanyFundamentals.spec.js +1 -1
- package/test/model/ApiResponseCompanyHistoricalData.spec.js +1 -1
- package/test/model/ApiResponseCompanyInsiderTransactionFilings.spec.js +1 -1
- package/test/model/ApiResponseCompanyNews.spec.js +1 -1
- package/test/model/ApiResponseCompanyPublicFloatResult.spec.js +1 -1
- package/test/model/ApiResponseCompanyRecognize.spec.js +1 -1
- package/test/model/ApiResponseCompanySecurities.spec.js +1 -1
- package/test/model/ApiResponseCompanySharesOutstanding.spec.js +1 -1
- package/test/model/ApiResponseDataTags.spec.js +1 -1
- package/test/model/ApiResponseDataTagsSearch.spec.js +1 -1
- package/test/model/ApiResponseESGCompanies.spec.js +1 -1
- package/test/model/ApiResponseESGCompanyComprehensiveRatingHistory.spec.js +1 -1
- package/test/model/ApiResponseESGCompanyRatingHistory.spec.js +1 -1
- package/test/model/ApiResponseESGLatest.spec.js +1 -1
- package/test/model/ApiResponseESGLatestComprehensive.spec.js +1 -1
- package/test/model/ApiResponseETFHoldings.spec.js +1 -1
- package/test/model/ApiResponseETFs.spec.js +1 -1
- package/test/model/ApiResponseEconomicIndexHistoricalData.spec.js +1 -1
- package/test/model/ApiResponseEconomicIndices.spec.js +1 -1
- package/test/model/ApiResponseEconomicIndicesSearch.spec.js +1 -1
- package/test/model/ApiResponseEodIndexPrices.spec.js +79 -0
- package/test/model/ApiResponseEodIndexPricesAll.spec.js +73 -0
- package/test/model/ApiResponseFilingAnswers.spec.js +1 -1
- package/test/model/ApiResponseFilingFundamentals.spec.js +1 -1
- package/test/model/ApiResponseFilingNotes.spec.js +1 -1
- package/test/model/ApiResponseFilingNotesSearch.spec.js +1 -1
- package/test/model/ApiResponseFilings.spec.js +1 -1
- package/test/model/ApiResponseForexCurrencies.spec.js +1 -1
- package/test/model/ApiResponseForexPairs.spec.js +1 -1
- package/test/model/ApiResponseForexPrices.spec.js +1 -1
- package/test/model/ApiResponseHistoricalData.spec.js +1 -1
- package/test/model/ApiResponseIndex.spec.js +73 -0
- package/test/model/ApiResponseIndices.spec.js +73 -0
- package/test/model/ApiResponseInitialPublicOfferings.spec.js +1 -1
- package/test/model/ApiResponseInsiderTransactionFilings.spec.js +1 -1
- package/test/model/ApiResponseMunicipalities.spec.js +1 -1
- package/test/model/ApiResponseMunicipalitiyFinancials.spec.js +1 -1
- package/test/model/ApiResponseNews.spec.js +1 -1
- package/test/model/ApiResponseOptionPrices.spec.js +1 -1
- package/test/model/ApiResponseOptions.spec.js +1 -1
- package/test/model/ApiResponseOptionsAggregates.spec.js +73 -0
- package/test/model/ApiResponseOptionsChain.spec.js +1 -1
- package/test/model/ApiResponseOptionsChainEod.spec.js +1 -1
- package/test/model/ApiResponseOptionsChainRealtime.spec.js +1 -1
- package/test/model/ApiResponseOptionsExpirations.spec.js +1 -1
- package/test/model/ApiResponseOptionsPriceRealtime.spec.js +1 -1
- package/test/model/ApiResponseOptionsPricesBatchRealtime.spec.js +1 -1
- package/test/model/ApiResponseOptionsPricesEod.spec.js +1 -1
- package/test/model/ApiResponseOptionsRealtime.spec.js +1 -1
- package/test/model/ApiResponseOptionsStatsRealtime.spec.js +1 -1
- package/test/model/ApiResponseOptionsTickers.spec.js +1 -1
- package/test/model/ApiResponseOptionsUnusualActivity.spec.js +1 -1
- package/test/model/ApiResponseOwnerInsiderTransactionFilings.spec.js +1 -1
- package/test/model/ApiResponseOwnerInstitutionalHoldings.spec.js +1 -1
- package/test/model/ApiResponseOwners.spec.js +1 -1
- package/test/model/ApiResponseRealtimeIndexPrices.spec.js +73 -0
- package/test/model/ApiResponseReportedFinancials.spec.js +1 -1
- package/test/model/ApiResponseSICIndexHistoricalData.spec.js +1 -1
- package/test/model/ApiResponseSICIndices.spec.js +1 -1
- package/test/model/ApiResponseSICIndicesSearch.spec.js +1 -1
- package/test/model/ApiResponseSecurities.spec.js +1 -1
- package/test/model/ApiResponseSecuritiesSearch.spec.js +1 -1
- package/test/model/ApiResponseSecurityAccumulationDistributionIndex.spec.js +1 -1
- package/test/model/ApiResponseSecurityAverageDailyTradingVolume.spec.js +1 -1
- package/test/model/ApiResponseSecurityAverageDirectionalIndex.spec.js +1 -1
- package/test/model/ApiResponseSecurityAverageTrueRange.spec.js +1 -1
- package/test/model/ApiResponseSecurityAwesomeOscillator.spec.js +1 -1
- package/test/model/ApiResponseSecurityBollingerBands.spec.js +1 -1
- package/test/model/ApiResponseSecurityChaikinMoneyFlow.spec.js +1 -1
- package/test/model/ApiResponseSecurityCommodityChannelIndex.spec.js +1 -1
- package/test/model/ApiResponseSecurityDetrendedPriceOscillator.spec.js +1 -1
- package/test/model/ApiResponseSecurityDonchianChannel.spec.js +1 -1
- package/test/model/ApiResponseSecurityEaseOfMovement.spec.js +1 -1
- package/test/model/ApiResponseSecurityForceIndex.spec.js +1 -1
- package/test/model/ApiResponseSecurityHistoricalData.spec.js +1 -1
- package/test/model/ApiResponseSecurityIchimokuKinkoHyo.spec.js +1 -1
- package/test/model/ApiResponseSecurityInstitutionalOwnership.spec.js +1 -1
- package/test/model/ApiResponseSecurityIntervalPrices.spec.js +1 -1
- package/test/model/ApiResponseSecurityIntradayPrices.spec.js +1 -1
- package/test/model/ApiResponseSecurityKeltnerChannel.spec.js +1 -1
- package/test/model/ApiResponseSecurityKnowSureThing.spec.js +1 -1
- package/test/model/ApiResponseSecurityMassIndex.spec.js +1 -1
- package/test/model/ApiResponseSecurityMoneyFlowIndex.spec.js +1 -1
- package/test/model/ApiResponseSecurityMovingAverageConvergenceDivergence.spec.js +1 -1
- package/test/model/ApiResponseSecurityNegativeVolumeIndex.spec.js +1 -1
- package/test/model/ApiResponseSecurityOnBalanceVolume.spec.js +1 -1
- package/test/model/ApiResponseSecurityOnBalanceVolumeMean.spec.js +1 -1
- package/test/model/ApiResponseSecurityRelativeStrengthIndex.spec.js +1 -1
- package/test/model/ApiResponseSecuritySimpleMovingAverage.spec.js +1 -1
- package/test/model/ApiResponseSecurityStochasticOscillator.spec.js +1 -1
- package/test/model/ApiResponseSecurityStockPriceAdjustments.spec.js +1 -1
- package/test/model/ApiResponseSecurityStockPrices.spec.js +1 -1
- package/test/model/ApiResponseSecurityTripleExponentialAverage.spec.js +1 -1
- package/test/model/ApiResponseSecurityTrueStrengthIndex.spec.js +1 -1
- package/test/model/ApiResponseSecurityUltimateOscillator.spec.js +1 -1
- package/test/model/ApiResponseSecurityVolumePriceTrend.spec.js +1 -1
- package/test/model/ApiResponseSecurityVolumeWeightedAveragePrice.spec.js +1 -1
- package/test/model/ApiResponseSecurityVortexIndicator.spec.js +1 -1
- package/test/model/ApiResponseSecurityWilliamsR.spec.js +1 -1
- package/test/model/ApiResponseSecurityZacksAnalystRatings.spec.js +1 -1
- package/test/model/ApiResponseSecurityZacksAnalystRatingsSnapshot.spec.js +1 -1
- package/test/model/ApiResponseSecurityZacksEPSSurprises.spec.js +1 -1
- package/test/model/ApiResponseSecurityZacksSalesSurprises.spec.js +1 -1
- package/test/model/ApiResponseStandardizedFinancials.spec.js +1 -1
- package/test/model/ApiResponseStandardizedFinancialsDimensions.spec.js +1 -1
- package/test/model/ApiResponseStockExchangeRealtimeStockPrices.spec.js +1 -1
- package/test/model/ApiResponseStockExchangeSecurities.spec.js +1 -1
- package/test/model/ApiResponseStockExchangeStockPriceAdjustments.spec.js +1 -1
- package/test/model/ApiResponseStockExchangeStockPrices.spec.js +1 -1
- package/test/model/ApiResponseStockExchanges.spec.js +1 -1
- package/test/model/ApiResponseStockMarketIndexHistoricalData.spec.js +1 -1
- package/test/model/ApiResponseStockMarketIndices.spec.js +1 -1
- package/test/model/ApiResponseStockMarketIndicesSearch.spec.js +1 -1
- package/test/model/ApiResponseZacksAnalystRatings.spec.js +1 -1
- package/test/model/ApiResponseZacksEBITDAConsensus.spec.js +73 -0
- package/test/model/ApiResponseZacksEPSEstimates.spec.js +1 -1
- package/test/model/ApiResponseZacksEPSGrowthRates.spec.js +1 -1
- package/test/model/ApiResponseZacksEPSSurprises.spec.js +1 -1
- package/test/model/ApiResponseZacksETFHoldings.spec.js +1 -1
- package/test/model/ApiResponseZacksForwardPEs.spec.js +73 -0
- package/test/model/ApiResponseZacksInstitutionalHoldingCompanies.spec.js +1 -1
- package/test/model/ApiResponseZacksInstitutionalHoldingOwners.spec.js +1 -1
- package/test/model/ApiResponseZacksInstitutionalHoldings.spec.js +1 -1
- package/test/model/ApiResponseZacksLongTermGrowthRates.spec.js +1 -1
- package/test/model/ApiResponseZacksSalesEstimates.spec.js +1 -1
- package/test/model/ApiResponseZacksSalesSurprises.spec.js +1 -1
- package/test/model/ApiResponseZacksTargetPriceConsensuses.spec.js +1 -1
- package/test/model/AverageDailyTradingVolumeTechnicalValue.spec.js +1 -1
- package/test/model/AverageDirectionalIndexTechnicalValue.spec.js +1 -1
- package/test/model/AverageTrueRangeTechnicalValue.spec.js +1 -1
- package/test/model/AwesomeOscillatorTechnicalValue.spec.js +1 -1
- package/test/model/BollingerBandsTechnicalValue.spec.js +1 -1
- package/test/model/BulkDownloadLinks.spec.js +1 -1
- package/test/model/BulkDownloadSummary.spec.js +1 -1
- package/test/model/ChaikinMoneyFlowTechnicalValue.spec.js +1 -1
- package/test/model/CommodityChannelIndexTechnicalValue.spec.js +1 -1
- package/test/model/Company.spec.js +1 -1
- package/test/model/CompanyDailyMetric.spec.js +1 -1
- package/test/model/CompanyFiling.spec.js +1 -1
- package/test/model/CompanyInitialPublicOffering.spec.js +1 -1
- package/test/model/CompanyNews.spec.js +7 -1
- package/test/model/CompanyNewsSummary.spec.js +7 -1
- package/test/model/CompanyPublicFloat.spec.js +1 -1
- package/test/model/CompanySharesOutstanding.spec.js +1 -1
- package/test/model/CompanySummary.spec.js +1 -1
- package/test/model/DataTag.spec.js +1 -1
- package/test/model/DataTagSummary.spec.js +1 -1
- package/test/model/DetrendedPriceOscillatorTechnicalValue.spec.js +1 -1
- package/test/model/DividendRecord.spec.js +1 -1
- package/test/model/DonchianChannelTechnicalValue.spec.js +1 -1
- package/test/model/ESGCompanySummary.spec.js +1 -1
- package/test/model/ESGComprehensiveRating.spec.js +1 -1
- package/test/model/ESGComprehensiveRatingWithCompany.spec.js +1 -1
- package/test/model/ESGRating.spec.js +1 -1
- package/test/model/ESGRatingWithCompany.spec.js +1 -1
- package/test/model/ETF.spec.js +1 -1
- package/test/model/ETFAnalytics.spec.js +1 -1
- package/test/model/ETFHolding.spec.js +1 -1
- package/test/model/ETFStats.spec.js +1 -1
- package/test/model/ETFSummary.spec.js +1 -1
- package/test/model/EarningsRecord.spec.js +1 -1
- package/test/model/EaseOfMovementTechnicalValue.spec.js +1 -1
- package/test/model/EconomicIndex.spec.js +1 -1
- package/test/model/EconomicIndexSummary.spec.js +1 -1
- package/test/model/EodIndexPrice.spec.js +103 -0
- package/test/model/EodIndexPriceSummary.spec.js +97 -0
- package/test/model/Filing.spec.js +1 -1
- package/test/model/FilingNote.spec.js +1 -1
- package/test/model/FilingNoteFiling.spec.js +1 -1
- package/test/model/FilingNoteSummary.spec.js +1 -1
- package/test/model/FilingSummary.spec.js +1 -1
- package/test/model/ForceIndexTechnicalValue.spec.js +1 -1
- package/test/model/ForexCurrency.spec.js +1 -1
- package/test/model/ForexPair.spec.js +1 -1
- package/test/model/ForexPrice.spec.js +1 -1
- package/test/model/Fundamental.spec.js +1 -1
- package/test/model/FundamentalSummary.spec.js +1 -1
- package/test/model/HistoricalData.spec.js +1 -1
- package/test/model/IchimokuKinkoHyoTechnicalValue.spec.js +1 -1
- package/test/model/InsiderTransaction.spec.js +1 -1
- package/test/model/InsiderTransactionFiling.spec.js +1 -1
- package/test/model/InstitutionalHolding.spec.js +1 -1
- package/test/model/InstitutionalOwnership.spec.js +1 -1
- package/test/model/IntradayStockPrice.spec.js +1 -1
- package/test/model/KeltnerChannelTechnicalValue.spec.js +1 -1
- package/test/model/KnowSureThingTechnicalValue.spec.js +1 -1
- package/test/model/MarketStatusResult.spec.js +1 -1
- package/test/model/MassIndexTechnicalValue.spec.js +1 -1
- package/test/model/MoneyFlowIndexTechnicalValue.spec.js +1 -1
- package/test/model/MovingAverageConvergenceDivergenceTechnicalValue.spec.js +1 -1
- package/test/model/Municipality.spec.js +1 -1
- package/test/model/MunicipalityFinancial.spec.js +1 -1
- package/test/model/NegativeVolumeIndexTechnicalValue.spec.js +1 -1
- package/test/model/NewsTopic.spec.js +1 -1
- package/test/model/OnBalanceVolumeMeanTechnicalValue.spec.js +1 -1
- package/test/model/OnBalanceVolumeTechnicalValue.spec.js +1 -1
- package/test/model/Option.spec.js +1 -1
- package/test/model/OptionChain.spec.js +1 -1
- package/test/model/OptionChainEod.spec.js +1 -1
- package/test/model/OptionChainRealtime.spec.js +1 -1
- package/test/model/OptionContractsList.spec.js +1 -1
- package/test/model/OptionEod.spec.js +1 -1
- package/test/model/OptionFactorsRealtime.spec.js +1 -1
- package/test/model/OptionInterval.spec.js +1 -1
- package/test/model/OptionIntervalMover.spec.js +1 -1
- package/test/model/OptionIntervalsMoversResult.spec.js +1 -1
- package/test/model/OptionIntervalsResult.spec.js +1 -1
- package/test/model/OptionPrice.spec.js +1 -1
- package/test/model/OptionPriceBatchRealtime.spec.js +1 -1
- package/test/model/OptionPriceEod.spec.js +1 -1
- package/test/model/OptionPriceRealtime.spec.js +1 -1
- package/test/model/OptionPriceRealtimeExtended.spec.js +1 -1
- package/test/model/OptionRealtime.spec.js +1 -1
- package/test/model/OptionSnapshotGroup.spec.js +1 -1
- package/test/model/OptionSnapshotsResult.spec.js +1 -1
- package/test/model/OptionStatsRealtime.spec.js +1 -1
- package/test/model/OptionUnusualTrade.spec.js +1 -1
- package/test/model/OptionsAggregate.spec.js +79 -0
- package/test/model/Owner.spec.js +1 -1
- package/test/model/OwnerSummary.spec.js +1 -1
- package/test/model/RealtimeIndexPrice.spec.js +1 -1
- package/test/model/RealtimeIndexPriceIndex.spec.js +1 -1
- package/test/model/RealtimeStockPrice.spec.js +1 -1
- package/test/model/RealtimeStockPriceSecurity.spec.js +1 -1
- package/test/model/RelativeStrengthIndexTechnicalValue.spec.js +1 -1
- package/test/model/ReportedFinancial.spec.js +1 -1
- package/test/model/ReportedFinancialDimension.spec.js +1 -1
- package/test/model/ReportedTag.spec.js +1 -1
- package/test/model/SICIndex.spec.js +1 -1
- package/test/model/Security.spec.js +1 -1
- package/test/model/SecurityHistory.spec.js +1 -1
- package/test/model/SecurityHistoryListResult.spec.js +1 -1
- package/test/model/SecurityIntervalMover.spec.js +1 -1
- package/test/model/SecurityIntervalsMoversResult.spec.js +1 -1
- package/test/model/SecurityReplayFileResult.spec.js +1 -1
- package/test/model/SecurityScreenClause.spec.js +1 -1
- package/test/model/SecurityScreenGroup.spec.js +1 -1
- package/test/model/SecurityScreenResult.spec.js +1 -1
- package/test/model/SecurityScreenResultData.spec.js +1 -1
- package/test/model/SecuritySnapshotGroup.spec.js +1 -1
- package/test/model/SecuritySnapshotsResult.spec.js +1 -1
- package/test/model/SecuritySummary.spec.js +1 -1
- package/test/model/SecurityTrades.spec.js +1 -1
- package/test/model/SecurityTradesResult.spec.js +1 -1
- package/test/model/SimpleMovingAverageTechnicalValue.spec.js +1 -1
- package/test/model/StandardizedFinancial.spec.js +1 -1
- package/test/model/StandardizedFinancialsDimension.spec.js +1 -1
- package/test/model/StochasticOscillatorTechnicalValue.spec.js +1 -1
- package/test/model/StockExchange.spec.js +1 -1
- package/test/model/StockMarketIndex.spec.js +1 -1
- package/test/model/StockMarketIndexSummary.spec.js +1 -1
- package/test/model/StockPrice.spec.js +1 -1
- package/test/model/StockPriceAdjustment.spec.js +1 -1
- package/test/model/StockPriceAdjustmentSummary.spec.js +1 -1
- package/test/model/StockPriceInterval.spec.js +1 -1
- package/test/model/StockPriceSummary.spec.js +1 -1
- package/test/model/TechnicalIndicator.spec.js +1 -1
- package/test/model/TheaEntityAnswer.spec.js +1 -1
- package/test/model/TheaSourceDocument.spec.js +1 -1
- package/test/model/TripleExponentialAverageTechnicalValue.spec.js +1 -1
- package/test/model/TrueStrengthIndexTechnicalValue.spec.js +1 -1
- package/test/model/UltimateOscillatorTechnicalValue.spec.js +1 -1
- package/test/model/VolumePriceTrendTechnicalValue.spec.js +1 -1
- package/test/model/VolumeWeightedAveragePriceValue.spec.js +1 -1
- package/test/model/VortexIndicatorTechnicalValue.spec.js +1 -1
- package/test/model/WilliamsRTechnicalValue.spec.js +1 -1
- package/test/model/ZacksAnalystRating.spec.js +1 -1
- package/test/model/ZacksAnalystRatingSnapshot.spec.js +1 -1
- package/test/model/ZacksAnalystRatingSummary.spec.js +1 -1
- package/test/model/ZacksEBITDAConsensus.spec.js +127 -0
- package/test/model/ZacksEPSEstimate.spec.js +1 -1
- package/test/model/ZacksEPSGrowthRate.spec.js +1 -1
- package/test/model/ZacksEPSSurprise.spec.js +1 -1
- package/test/model/ZacksEPSSurpriseSummary.spec.js +1 -1
- package/test/model/ZacksETFHolding.spec.js +1 -1
- package/test/model/ZacksForwardPE.spec.js +115 -0
- package/test/model/ZacksInstitutionalHolding.spec.js +1 -1
- package/test/model/ZacksInstitutionalHoldingCompanyDetail.spec.js +1 -1
- package/test/model/ZacksInstitutionalHoldingCompanySummary.spec.js +1 -1
- package/test/model/ZacksInstitutionalHoldingHistoricalSummary.spec.js +1 -1
- package/test/model/ZacksInstitutionalHoldingOwnerDetail.spec.js +1 -1
- package/test/model/ZacksInstitutionalHoldingOwnerSummary.spec.js +1 -1
- package/test/model/ZacksLongTermGrowthRate.spec.js +1 -1
- package/test/model/ZacksSalesEstimate.spec.js +1 -1
- package/test/model/ZacksSalesSurprise.spec.js +1 -1
- package/test/model/ZacksSalesSurpriseSummary.spec.js +1 -1
- package/test/model/ZacksTargetPriceConsensus.spec.js +1 -1
package/README.md
CHANGED
|
@@ -4,8 +4,8 @@ To get an API key, [sign up here](https://intrinio.com/).
|
|
|
4
4
|
|
|
5
5
|
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.
|
|
6
6
|
|
|
7
|
-
- API version: 2.
|
|
8
|
-
- Package version: 6.27.
|
|
7
|
+
- API version: 2.61.1
|
|
8
|
+
- Package version: 6.27.3
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
@@ -132,13 +132,18 @@ Class | Method | HTTP request | Description
|
|
|
132
132
|
*intrinioSDK.FundamentalsApi* | [**lookupFundamental**](docs/FundamentalsApi.md#lookupFundamental) | **GET** /fundamentals/lookup/{identifier}/{statement_code}/{fiscal_year}/{fiscal_period} | Lookup Fundamental
|
|
133
133
|
*intrinioSDK.HistoricalDataApi* | [**getHistoricalData**](docs/HistoricalDataApi.md#getHistoricalData) | **GET** /historical_data/{identifier}/{tag} | Historical Data
|
|
134
134
|
*intrinioSDK.IndexApi* | [**getAllEconomicIndices**](docs/IndexApi.md#getAllEconomicIndices) | **GET** /indices/economic | All Economic Indices
|
|
135
|
+
*intrinioSDK.IndexApi* | [**getAllEodIndexPrices**](docs/IndexApi.md#getAllEodIndexPrices) | **GET** /indices/prices/eod | All End of Day Index Prices
|
|
136
|
+
*intrinioSDK.IndexApi* | [**getAllIndexSummaries**](docs/IndexApi.md#getAllIndexSummaries) | **GET** /indices | All Index Summaries
|
|
137
|
+
*intrinioSDK.IndexApi* | [**getAllRealtimeIndexPrices**](docs/IndexApi.md#getAllRealtimeIndexPrices) | **GET** /indices/prices/realtime | All Realtime Index Prices
|
|
135
138
|
*intrinioSDK.IndexApi* | [**getAllSicIndices**](docs/IndexApi.md#getAllSicIndices) | **GET** /indices/sic | All SIC Indices
|
|
136
139
|
*intrinioSDK.IndexApi* | [**getAllStockMarketIndices**](docs/IndexApi.md#getAllStockMarketIndices) | **GET** /indices/stock_market | All Stock Market Indices
|
|
137
140
|
*intrinioSDK.IndexApi* | [**getEconomicIndexById**](docs/IndexApi.md#getEconomicIndexById) | **GET** /indices/economic/{identifier} | Lookup Economic Index
|
|
138
141
|
*intrinioSDK.IndexApi* | [**getEconomicIndexDataPointNumber**](docs/IndexApi.md#getEconomicIndexDataPointNumber) | **GET** /indices/economic/{identifier}/data_point/{tag}/number | Data Point (Number) for an Economic Index
|
|
139
142
|
*intrinioSDK.IndexApi* | [**getEconomicIndexDataPointText**](docs/IndexApi.md#getEconomicIndexDataPointText) | **GET** /indices/economic/{identifier}/data_point/{tag}/text | Data Point (Text) for an Economic Index
|
|
140
143
|
*intrinioSDK.IndexApi* | [**getEconomicIndexHistoricalData**](docs/IndexApi.md#getEconomicIndexHistoricalData) | **GET** /indices/economic/{identifier}/historical_data/{tag} | Historical Data for an Economic Index
|
|
141
|
-
*intrinioSDK.IndexApi* | [**
|
|
144
|
+
*intrinioSDK.IndexApi* | [**getEodIndexPriceById**](docs/IndexApi.md#getEodIndexPriceById) | **GET** /indices/{identifier}/eod | End of Day Index Prices By Identifier
|
|
145
|
+
*intrinioSDK.IndexApi* | [**getIndexSummaryById**](docs/IndexApi.md#getIndexSummaryById) | **GET** /indices/{identifier} | Index Summary By Identifier
|
|
146
|
+
*intrinioSDK.IndexApi* | [**getRealtimeIndexPriceById**](docs/IndexApi.md#getRealtimeIndexPriceById) | **GET** /indices/{identifier}/realtime | Realtime Index Price By Identifier
|
|
142
147
|
*intrinioSDK.IndexApi* | [**getSicIndexById**](docs/IndexApi.md#getSicIndexById) | **GET** /indices/sic/{identifier} | Lookup SIC Index
|
|
143
148
|
*intrinioSDK.IndexApi* | [**getSicIndexDataPointNumber**](docs/IndexApi.md#getSicIndexDataPointNumber) | **GET** /indices/sic/{identifier}/data_point/{tag}/number | Data Point (Number) for an SIC Index
|
|
144
149
|
*intrinioSDK.IndexApi* | [**getSicIndexDataPointText**](docs/IndexApi.md#getSicIndexDataPointText) | **GET** /indices/sic/{identifier}/data_point/{tag}/text | Data Point (Text) for an SIC Index
|
|
@@ -156,6 +161,7 @@ Class | Method | HTTP request | Description
|
|
|
156
161
|
*intrinioSDK.MunicipalityApi* | [**getMunicipalityById**](docs/MunicipalityApi.md#getMunicipalityById) | **GET** /municipalities/{id} | Municipality by ID
|
|
157
162
|
*intrinioSDK.MunicipalityApi* | [**getMunicipalityFinancials**](docs/MunicipalityApi.md#getMunicipalityFinancials) | **GET** /municipalities/{id}/financials | Financials for a Municipality
|
|
158
163
|
*intrinioSDK.OptionsApi* | [**getAllOptionsTickers**](docs/OptionsApi.md#getAllOptionsTickers) | **GET** /options/tickers | Options Tickers
|
|
164
|
+
*intrinioSDK.OptionsApi* | [**getOptionAggregates**](docs/OptionsApi.md#getOptionAggregates) | **GET** /options/aggregates | Total open interest and volume aggregated by ticker
|
|
159
165
|
*intrinioSDK.OptionsApi* | [**getOptionExpirationsRealtime**](docs/OptionsApi.md#getOptionExpirationsRealtime) | **GET** /options/expirations/{symbol}/realtime | Options Expirations
|
|
160
166
|
*intrinioSDK.OptionsApi* | [**getOptionStrikesRealtime**](docs/OptionsApi.md#getOptionStrikesRealtime) | **GET** /options/strikes/{symbol}/{strike}/realtime | Option Strikes Realtime
|
|
161
167
|
*intrinioSDK.OptionsApi* | [**getOptions**](docs/OptionsApi.md#getOptions) | **GET** /options/{symbol} | Options
|
|
@@ -281,10 +287,13 @@ Class | Method | HTTP request | Description
|
|
|
281
287
|
*intrinioSDK.TechnicalApi* | [**getSecurityPriceTechnicalsVwap**](docs/TechnicalApi.md#getSecurityPriceTechnicalsVwap) | **GET** /securities/{identifier}/prices/technicals/vwap | Volume Weighted Average Price
|
|
282
288
|
*intrinioSDK.TechnicalApi* | [**getSecurityPriceTechnicalsWr**](docs/TechnicalApi.md#getSecurityPriceTechnicalsWr) | **GET** /securities/{identifier}/prices/technicals/wr | Williams %R
|
|
283
289
|
*intrinioSDK.ZacksApi* | [**getZacksAnalystRatings**](docs/ZacksApi.md#getZacksAnalystRatings) | **GET** /zacks/analyst_ratings | Zacks Analyst Ratings
|
|
290
|
+
*intrinioSDK.ZacksApi* | [**getZacksEbitdaConsensus**](docs/ZacksApi.md#getZacksEbitdaConsensus) | **GET** /zacks/ebitda_consensus | Zacks EBITDA Consensus
|
|
284
291
|
*intrinioSDK.ZacksApi* | [**getZacksEpsEstimates**](docs/ZacksApi.md#getZacksEpsEstimates) | **GET** /zacks/eps_estimates | Zacks EPS Estimates
|
|
285
292
|
*intrinioSDK.ZacksApi* | [**getZacksEpsGrowthRates**](docs/ZacksApi.md#getZacksEpsGrowthRates) | **GET** /zacks/eps_growth_rates | Zacks EPS Growth Rates
|
|
286
293
|
*intrinioSDK.ZacksApi* | [**getZacksEpsSurprises**](docs/ZacksApi.md#getZacksEpsSurprises) | **GET** /zacks/eps_surprises | Zacks EPS Surprises
|
|
287
294
|
*intrinioSDK.ZacksApi* | [**getZacksEtfHoldings**](docs/ZacksApi.md#getZacksEtfHoldings) | **GET** /zacks/etf_holdings | Zacks ETF Holdings
|
|
295
|
+
*intrinioSDK.ZacksApi* | [**getZacksForwardPe**](docs/ZacksApi.md#getZacksForwardPe) | **GET** /zacks/forward_pe | Zacks Forward PE Estimates
|
|
296
|
+
*intrinioSDK.ZacksApi* | [**getZacksForwardPeByIdentifier**](docs/ZacksApi.md#getZacksForwardPeByIdentifier) | **GET** /zacks/forward_pe/{identifier} | Zacks Forward PE by identifer
|
|
288
297
|
*intrinioSDK.ZacksApi* | [**getZacksInstitutionalHoldingCompanies**](docs/ZacksApi.md#getZacksInstitutionalHoldingCompanies) | **GET** /zacks/institutional_holdings/companies | Zacks Institutional Holding Companies
|
|
289
298
|
*intrinioSDK.ZacksApi* | [**getZacksInstitutionalHoldingOwners**](docs/ZacksApi.md#getZacksInstitutionalHoldingOwners) | **GET** /zacks/institutional_holdings/owners | Zacks Institutional Holding Owners
|
|
290
299
|
*intrinioSDK.ZacksApi* | [**getZacksInstitutionalHoldings**](docs/ZacksApi.md#getZacksInstitutionalHoldings) | **GET** /zacks/institutional_holdings | Zacks Institutional Holdings
|
|
@@ -323,6 +332,8 @@ Class | Method | HTTP request | Description
|
|
|
323
332
|
- [intrinioSDK.ApiResponseEconomicIndexHistoricalData](docs/ApiResponseEconomicIndexHistoricalData.md)
|
|
324
333
|
- [intrinioSDK.ApiResponseEconomicIndices](docs/ApiResponseEconomicIndices.md)
|
|
325
334
|
- [intrinioSDK.ApiResponseEconomicIndicesSearch](docs/ApiResponseEconomicIndicesSearch.md)
|
|
335
|
+
- [intrinioSDK.ApiResponseEodIndexPrices](docs/ApiResponseEodIndexPrices.md)
|
|
336
|
+
- [intrinioSDK.ApiResponseEodIndexPricesAll](docs/ApiResponseEodIndexPricesAll.md)
|
|
326
337
|
- [intrinioSDK.ApiResponseFilingAnswers](docs/ApiResponseFilingAnswers.md)
|
|
327
338
|
- [intrinioSDK.ApiResponseFilingFundamentals](docs/ApiResponseFilingFundamentals.md)
|
|
328
339
|
- [intrinioSDK.ApiResponseFilingNotes](docs/ApiResponseFilingNotes.md)
|
|
@@ -332,6 +343,8 @@ Class | Method | HTTP request | Description
|
|
|
332
343
|
- [intrinioSDK.ApiResponseForexPairs](docs/ApiResponseForexPairs.md)
|
|
333
344
|
- [intrinioSDK.ApiResponseForexPrices](docs/ApiResponseForexPrices.md)
|
|
334
345
|
- [intrinioSDK.ApiResponseHistoricalData](docs/ApiResponseHistoricalData.md)
|
|
346
|
+
- [intrinioSDK.ApiResponseIndex](docs/ApiResponseIndex.md)
|
|
347
|
+
- [intrinioSDK.ApiResponseIndices](docs/ApiResponseIndices.md)
|
|
335
348
|
- [intrinioSDK.ApiResponseInitialPublicOfferings](docs/ApiResponseInitialPublicOfferings.md)
|
|
336
349
|
- [intrinioSDK.ApiResponseInsiderTransactionFilings](docs/ApiResponseInsiderTransactionFilings.md)
|
|
337
350
|
- [intrinioSDK.ApiResponseMunicipalities](docs/ApiResponseMunicipalities.md)
|
|
@@ -339,6 +352,7 @@ Class | Method | HTTP request | Description
|
|
|
339
352
|
- [intrinioSDK.ApiResponseNews](docs/ApiResponseNews.md)
|
|
340
353
|
- [intrinioSDK.ApiResponseOptionPrices](docs/ApiResponseOptionPrices.md)
|
|
341
354
|
- [intrinioSDK.ApiResponseOptions](docs/ApiResponseOptions.md)
|
|
355
|
+
- [intrinioSDK.ApiResponseOptionsAggregates](docs/ApiResponseOptionsAggregates.md)
|
|
342
356
|
- [intrinioSDK.ApiResponseOptionsChain](docs/ApiResponseOptionsChain.md)
|
|
343
357
|
- [intrinioSDK.ApiResponseOptionsChainEod](docs/ApiResponseOptionsChainEod.md)
|
|
344
358
|
- [intrinioSDK.ApiResponseOptionsChainRealtime](docs/ApiResponseOptionsChainRealtime.md)
|
|
@@ -353,6 +367,7 @@ Class | Method | HTTP request | Description
|
|
|
353
367
|
- [intrinioSDK.ApiResponseOwnerInsiderTransactionFilings](docs/ApiResponseOwnerInsiderTransactionFilings.md)
|
|
354
368
|
- [intrinioSDK.ApiResponseOwnerInstitutionalHoldings](docs/ApiResponseOwnerInstitutionalHoldings.md)
|
|
355
369
|
- [intrinioSDK.ApiResponseOwners](docs/ApiResponseOwners.md)
|
|
370
|
+
- [intrinioSDK.ApiResponseRealtimeIndexPrices](docs/ApiResponseRealtimeIndexPrices.md)
|
|
356
371
|
- [intrinioSDK.ApiResponseReportedFinancials](docs/ApiResponseReportedFinancials.md)
|
|
357
372
|
- [intrinioSDK.ApiResponseSICIndexHistoricalData](docs/ApiResponseSICIndexHistoricalData.md)
|
|
358
373
|
- [intrinioSDK.ApiResponseSICIndices](docs/ApiResponseSICIndices.md)
|
|
@@ -411,10 +426,12 @@ Class | Method | HTTP request | Description
|
|
|
411
426
|
- [intrinioSDK.ApiResponseStockMarketIndices](docs/ApiResponseStockMarketIndices.md)
|
|
412
427
|
- [intrinioSDK.ApiResponseStockMarketIndicesSearch](docs/ApiResponseStockMarketIndicesSearch.md)
|
|
413
428
|
- [intrinioSDK.ApiResponseZacksAnalystRatings](docs/ApiResponseZacksAnalystRatings.md)
|
|
429
|
+
- [intrinioSDK.ApiResponseZacksEBITDAConsensus](docs/ApiResponseZacksEBITDAConsensus.md)
|
|
414
430
|
- [intrinioSDK.ApiResponseZacksEPSEstimates](docs/ApiResponseZacksEPSEstimates.md)
|
|
415
431
|
- [intrinioSDK.ApiResponseZacksEPSGrowthRates](docs/ApiResponseZacksEPSGrowthRates.md)
|
|
416
432
|
- [intrinioSDK.ApiResponseZacksEPSSurprises](docs/ApiResponseZacksEPSSurprises.md)
|
|
417
433
|
- [intrinioSDK.ApiResponseZacksETFHoldings](docs/ApiResponseZacksETFHoldings.md)
|
|
434
|
+
- [intrinioSDK.ApiResponseZacksForwardPEs](docs/ApiResponseZacksForwardPEs.md)
|
|
418
435
|
- [intrinioSDK.ApiResponseZacksInstitutionalHoldingCompanies](docs/ApiResponseZacksInstitutionalHoldingCompanies.md)
|
|
419
436
|
- [intrinioSDK.ApiResponseZacksInstitutionalHoldingOwners](docs/ApiResponseZacksInstitutionalHoldingOwners.md)
|
|
420
437
|
- [intrinioSDK.ApiResponseZacksInstitutionalHoldings](docs/ApiResponseZacksInstitutionalHoldings.md)
|
|
@@ -459,6 +476,8 @@ Class | Method | HTTP request | Description
|
|
|
459
476
|
- [intrinioSDK.EaseOfMovementTechnicalValue](docs/EaseOfMovementTechnicalValue.md)
|
|
460
477
|
- [intrinioSDK.EconomicIndex](docs/EconomicIndex.md)
|
|
461
478
|
- [intrinioSDK.EconomicIndexSummary](docs/EconomicIndexSummary.md)
|
|
479
|
+
- [intrinioSDK.EodIndexPrice](docs/EodIndexPrice.md)
|
|
480
|
+
- [intrinioSDK.EodIndexPriceSummary](docs/EodIndexPriceSummary.md)
|
|
462
481
|
- [intrinioSDK.Filing](docs/Filing.md)
|
|
463
482
|
- [intrinioSDK.FilingNote](docs/FilingNote.md)
|
|
464
483
|
- [intrinioSDK.FilingNoteFiling](docs/FilingNoteFiling.md)
|
|
@@ -510,6 +529,7 @@ Class | Method | HTTP request | Description
|
|
|
510
529
|
- [intrinioSDK.OptionSnapshotsResult](docs/OptionSnapshotsResult.md)
|
|
511
530
|
- [intrinioSDK.OptionStatsRealtime](docs/OptionStatsRealtime.md)
|
|
512
531
|
- [intrinioSDK.OptionUnusualTrade](docs/OptionUnusualTrade.md)
|
|
532
|
+
- [intrinioSDK.OptionsAggregate](docs/OptionsAggregate.md)
|
|
513
533
|
- [intrinioSDK.Owner](docs/Owner.md)
|
|
514
534
|
- [intrinioSDK.OwnerSummary](docs/OwnerSummary.md)
|
|
515
535
|
- [intrinioSDK.RealtimeIndexPrice](docs/RealtimeIndexPrice.md)
|
|
@@ -561,11 +581,13 @@ Class | Method | HTTP request | Description
|
|
|
561
581
|
- [intrinioSDK.ZacksAnalystRating](docs/ZacksAnalystRating.md)
|
|
562
582
|
- [intrinioSDK.ZacksAnalystRatingSnapshot](docs/ZacksAnalystRatingSnapshot.md)
|
|
563
583
|
- [intrinioSDK.ZacksAnalystRatingSummary](docs/ZacksAnalystRatingSummary.md)
|
|
584
|
+
- [intrinioSDK.ZacksEBITDAConsensus](docs/ZacksEBITDAConsensus.md)
|
|
564
585
|
- [intrinioSDK.ZacksEPSEstimate](docs/ZacksEPSEstimate.md)
|
|
565
586
|
- [intrinioSDK.ZacksEPSGrowthRate](docs/ZacksEPSGrowthRate.md)
|
|
566
587
|
- [intrinioSDK.ZacksEPSSurprise](docs/ZacksEPSSurprise.md)
|
|
567
588
|
- [intrinioSDK.ZacksEPSSurpriseSummary](docs/ZacksEPSSurpriseSummary.md)
|
|
568
589
|
- [intrinioSDK.ZacksETFHolding](docs/ZacksETFHolding.md)
|
|
590
|
+
- [intrinioSDK.ZacksForwardPE](docs/ZacksForwardPE.md)
|
|
569
591
|
- [intrinioSDK.ZacksInstitutionalHolding](docs/ZacksInstitutionalHolding.md)
|
|
570
592
|
- [intrinioSDK.ZacksInstitutionalHoldingCompanyDetail](docs/ZacksInstitutionalHoldingCompanyDetail.md)
|
|
571
593
|
- [intrinioSDK.ZacksInstitutionalHoldingCompanySummary](docs/ZacksInstitutionalHoldingCompanySummary.md)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:ApiResponseEodIndexPrices)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### ApiResponseEodIndexPrices
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**prices** | [**[EodIndexPriceSummary]**](EodIndexPriceSummary.md) |
|
|
15
|
+
**index** | [**ApiResponseIndex**](ApiResponseIndex.md) | The index
|
|
16
|
+
**nextPage** | 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:EodIndexPriceSummary)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
[//]: # (CONTAINED_CLASS:ApiResponseIndex)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:ApiResponseEodIndexPricesAll)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### ApiResponseEodIndexPricesAll
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**prices** | [**[EodIndexPrice]**](EodIndexPrice.md) |
|
|
15
|
+
**nextPage** | String | The token required to request the next page of the data. If null, no further results are available.
|
|
16
|
+
|
|
17
|
+
[//]: # (END_DEFINITION)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[//]: # (CONTAINED_CLASS:EodIndexPrice)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:ApiResponseIndex)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### ApiResponseIndex
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**symbol** | String | The index symbol
|
|
15
|
+
**name** | String | The index name
|
|
16
|
+
|
|
17
|
+
[//]: # (END_DEFINITION)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:ApiResponseIndices)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### ApiResponseIndices
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**indices** | [**[ApiResponseIndex]**](ApiResponseIndex.md) |
|
|
15
|
+
**nextPage** | String | The token required to request the next page of the data. If null, no further results are available.
|
|
16
|
+
|
|
17
|
+
[//]: # (END_DEFINITION)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[//]: # (CONTAINED_CLASS:ApiResponseIndex)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:ApiResponseOptionsAggregates)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### ApiResponseOptionsAggregates
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**aggregates** | [**[OptionsAggregate]**](OptionsAggregate.md) | A list of option expiration dates in descending order
|
|
15
|
+
**nextPage** | String | The token required to request the next page of the data. If null, no further results are available.
|
|
16
|
+
|
|
17
|
+
[//]: # (END_DEFINITION)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[//]: # (CONTAINED_CLASS:OptionsAggregate)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:ApiResponseRealtimeIndexPrices)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### ApiResponseRealtimeIndexPrices
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**prices** | [**[RealtimeIndexPrice]**](RealtimeIndexPrice.md) |
|
|
15
|
+
**nextPage** | String | The token required to request the next page of the data. If null, no further results are available.
|
|
16
|
+
|
|
17
|
+
[//]: # (END_DEFINITION)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[//]: # (CONTAINED_CLASS:RealtimeIndexPrice)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:ApiResponseZacksEBITDAConsensus)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### ApiResponseZacksEBITDAConsensus
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**ebitdaConsensuses** | [**[ZacksEBITDAConsensus]**](ZacksEBITDAConsensus.md) | Zacks target price consensuses for the latest date
|
|
15
|
+
**nextPage** | String | The token required to request the next page of the data. If null, no further results are available.
|
|
16
|
+
|
|
17
|
+
[//]: # (END_DEFINITION)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[//]: # (CONTAINED_CLASS:ZacksEBITDAConsensus)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:ApiResponseZacksForwardPEs)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### ApiResponseZacksForwardPEs
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**forwardPe** | [**[ZacksForwardPE]**](ZacksForwardPE.md) | Zacks forward PE ratio estimates
|
|
15
|
+
**nextPage** | String | The token required to request the next page of the data. If null, no further results are available.
|
|
16
|
+
|
|
17
|
+
[//]: # (END_DEFINITION)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[//]: # (CONTAINED_CLASS:ZacksForwardPE)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
package/docs/CompanyApi.md
CHANGED
|
@@ -294,7 +294,7 @@ company.getAllCompanyNews(opts).then(function(data) {
|
|
|
294
294
|
|
|
295
295
|
Name | Type | Description | Notes
|
|
296
296
|
------------- | ------------- | ------------- | -------------
|
|
297
|
-
**specificSource** | String| Only news from this source. | [optional]
|
|
297
|
+
**specificSource** | String| Only news from this source. Defaults to highest available if not present. | [optional]
|
|
298
298
|
**pageSize** | Number| The maximum number of results to return. | [optional] [default to 100]
|
|
299
299
|
**sentiment** | String| Filter by sentiment. Unsupported for yahoo source. | [optional]
|
|
300
300
|
**topic** | String| Filter by topic. Unsupported for yahoo source. | [optional]
|
|
@@ -1209,7 +1209,7 @@ company.getCompanyNews(identifier, opts).then(function(data) {
|
|
|
1209
1209
|
Name | Type | Description | Notes
|
|
1210
1210
|
------------- | ------------- | ------------- | -------------
|
|
1211
1211
|
**identifier** | String| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |
|
|
1212
|
-
**specificSource** | String| Only news from this source | [optional]
|
|
1212
|
+
**specificSource** | String| Only news from this source. Defaults to highest available if not present. | [optional]
|
|
1213
1213
|
**pageSize** | Number| The maximum number of results to return | [optional] [default to 100]
|
|
1214
1214
|
**sentiment** | String| Filter by sentiment. Unsupported for yahoo source. | [optional]
|
|
1215
1215
|
**topic** | String| Filter by topic. Unsupported for yahoo source. | [optional]
|
|
@@ -1804,6 +1804,7 @@ var query = "Apple";
|
|
|
1804
1804
|
|
|
1805
1805
|
var opts = {
|
|
1806
1806
|
'active': true,
|
|
1807
|
+
'mode': null,
|
|
1807
1808
|
'pageSize': 100
|
|
1808
1809
|
};
|
|
1809
1810
|
|
|
@@ -1825,7 +1826,8 @@ company.searchCompanies(query, opts).then(function(data) {
|
|
|
1825
1826
|
Name | Type | Description | Notes
|
|
1826
1827
|
------------- | ------------- | ------------- | -------------
|
|
1827
1828
|
**query** | String| Search parameters |
|
|
1828
|
-
**active** | Boolean| When true, return companies that are actively traded (having stock prices within the past 14 days). When false, return companies that are not actively traded or never have been traded. | [optional]
|
|
1829
|
+
**active** | Boolean| When true, return companies that are actively traded (having stock prices within the past 14 days). When false, return companies that are not actively traded or never have been traded. Not setting this value returns all. Not used when mode is set. | [optional]
|
|
1830
|
+
**mode** | String| When set, changes search mode to the specified mode. | [optional]
|
|
1829
1831
|
**pageSize** | Number| The number of results to return | [optional] [default to 100]
|
|
1830
1832
|
<br/>
|
|
1831
1833
|
|
package/docs/CompanyNews.md
CHANGED
|
@@ -26,6 +26,7 @@ Name | Type | Description
|
|
|
26
26
|
**businessRelevance** | Number | How strongly correlated the news article is to the business
|
|
27
27
|
**articleSentiment** | String | The news sentiment.
|
|
28
28
|
**articleSentimentConfidence** | Number | The confidence score of the sentiment rating
|
|
29
|
+
**body** | String | The article body. Requires additional access.
|
|
29
30
|
|
|
30
31
|
[//]: # (END_DEFINITION)
|
|
31
32
|
|
|
@@ -25,6 +25,7 @@ Name | Type | Description
|
|
|
25
25
|
**businessRelevance** | Number | How strongly correlated the news article is to the business
|
|
26
26
|
**articleSentiment** | String | The news sentiment.
|
|
27
27
|
**articleSentimentConfidence** | Number | The confidence score of the sentiment rating
|
|
28
|
+
**body** | String | The article body. Requires additional access.
|
|
28
29
|
|
|
29
30
|
[//]: # (END_DEFINITION)
|
|
30
31
|
|
package/docs/ETFsApi.md
CHANGED
|
@@ -445,7 +445,7 @@ Name | Type | Description | Notes
|
|
|
445
445
|
|
|
446
446
|
[//]: # (START_OVERVIEW)
|
|
447
447
|
|
|
448
|
-
> ApiResponseETFs searchEtfs(query)
|
|
448
|
+
> ApiResponseETFs searchEtfs(query, opts)
|
|
449
449
|
|
|
450
450
|
#### Search ETFs
|
|
451
451
|
|
|
@@ -468,7 +468,11 @@ var eTFs = new intrinioSDK.ETFsApi();
|
|
|
468
468
|
var query = "iShares";
|
|
469
469
|
|
|
470
470
|
|
|
471
|
-
|
|
471
|
+
var opts = {
|
|
472
|
+
'mode': null
|
|
473
|
+
};
|
|
474
|
+
|
|
475
|
+
eTFs.searchEtfs(query, opts).then(function(data) {
|
|
472
476
|
data = JSON.stringify(data, null, 2)
|
|
473
477
|
console.log(data);
|
|
474
478
|
}, function(error) {
|
|
@@ -486,6 +490,7 @@ eTFs.searchEtfs(query).then(function(data) {
|
|
|
486
490
|
Name | Type | Description | Notes
|
|
487
491
|
------------- | ------------- | ------------- | -------------
|
|
488
492
|
**query** | String| |
|
|
493
|
+
**mode** | String| When set, changes search mode to the specified mode. Paging is not available in rank_order. | [optional]
|
|
489
494
|
<br/>
|
|
490
495
|
|
|
491
496
|
[//]: # (END_PARAMETERS)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:EodIndexPrice)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### EodIndexPrice
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**index** | [**ApiResponseIndex**](ApiResponseIndex.md) | The index
|
|
15
|
+
**close** | Number | The close price
|
|
16
|
+
**open** | Number | The open price
|
|
17
|
+
**high** | Number | The high price
|
|
18
|
+
**low** | Number | The low price
|
|
19
|
+
**volume** | Number | The volume
|
|
20
|
+
**date** | Date | The date of the pricing data.
|
|
21
|
+
|
|
22
|
+
[//]: # (END_DEFINITION)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
[//]: # (CONTAINED_CLASS:ApiResponseIndex)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
[//]: # (CLASS:EodIndexPriceSummary)
|
|
3
|
+
|
|
4
|
+
[//]: # (KIND:object)
|
|
5
|
+
|
|
6
|
+
### EodIndexPriceSummary
|
|
7
|
+
|
|
8
|
+
#### Properties
|
|
9
|
+
|
|
10
|
+
[//]: # (START_DEFINITION)
|
|
11
|
+
|
|
12
|
+
Name | Type | Description
|
|
13
|
+
------------ | ------------- | -------------
|
|
14
|
+
**close** | Number | The close price
|
|
15
|
+
**open** | Number | The open price
|
|
16
|
+
**high** | Number | The high price
|
|
17
|
+
**low** | Number | The low price
|
|
18
|
+
**volume** | Number | The volume
|
|
19
|
+
**date** | Date | The date of the pricing data.
|
|
20
|
+
|
|
21
|
+
[//]: # (END_DEFINITION)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
package/docs/FundamentalsApi.md
CHANGED
|
@@ -70,6 +70,7 @@ var opts = {
|
|
|
70
70
|
'endDate': new Date("2022-12-01"),
|
|
71
71
|
'updatedAfter': new Date("2022-12-01"),
|
|
72
72
|
'updatedBefore': new Date("2022-12-01"),
|
|
73
|
+
'template': "indu",
|
|
73
74
|
'nextPage': null
|
|
74
75
|
};
|
|
75
76
|
|
|
@@ -101,6 +102,7 @@ Name | Type | Description | Notes
|
|
|
101
102
|
**endDate** | Date| Only include fundamentals where covered period is on or before this date. | [optional]
|
|
102
103
|
**updatedAfter** | Date| Only include fundamentals where it was updated after this date. | [optional]
|
|
103
104
|
**updatedBefore** | Date| Only include fundamentals where it was updated before this date. | [optional]
|
|
105
|
+
**template** | String| The financial statement template used by Intrinio to standardize the as reported data | [optional]
|
|
104
106
|
**nextPage** | String| Gets the next page of data from a previous API call | [optional]
|
|
105
107
|
<br/>
|
|
106
108
|
|