Financial Modeling Prep This module is a node wrapper for the free Financial Modeling Prep API. This node application implements almost all aspects of the FMP API. About FinancialModelingPrep The FMP API offers different types of data ranging from stock prices and historical data to financial state...
data being returned. For example, if you require more than 1 month of 30-minute data, you can make queries over day intervals to cover the entire desired time range. Here is an example link for retrieving 1-minute data: https://financialmodelingprep.com/api/v3/historical-chart/1min/AAPL...
const fmp = require('financialmodelingprep')(apikey) // Simple Examples // API route: /quote/AAPL fmp.stock('aapl').quote().then(response => console.log(response)); //API route: /quote/AAPL,MSFT fmp.stock(['AAPL', 'MSFT']).quote().then(response => console.log(response)); //...