Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
alpha_vantage_api_wrapper
Advanced tools
This is a simple wrapper package for the Alpha Vantage API For now it only works for Stocks.
Getting Simple Intraday Data for APPL
var Alpha = require('alpha_vantage_api').Alpha
var alpha = new Alpha('api-key')
alpha.stocks.intraday('APPL')
.then((res) => {
// To what you want with the data
})
.catch((err) => {
// Handle the error
})
This API returns intraday time series (timestamp, open, high, low, close, volume) of the equity specified.
Available options
{
"datatype": "json" || "csv",
"outputsize": "compact" || "full",
"interval": "1min" || "5min" || "15min" || "30min" || "60"
}
alpha.stocks.intraday(ticker, options = optional)
This API returns daily time series (date, daily open, daily high, daily low, daily close, daily volume) of the global equity specified, covering 20+ years of historical data.
The most recent data point is the cumulative prices and volume information of the current trading day, updated realtime.
Available options
{
"datatype": "json" || "csv",
"outputsize": "compact" || "full",
}
alpha.stocks.daily(ticker, options = optional)
This API returns daily time series (date, daily open, daily high, daily low, daily close, daily volume, daily adjusted close, and split/dividend events) of the global equity specified, covering 20+ years of historical data.
The most recent data point is the cumulative prices and volume information of the current trading day, updated realtime.
Available options
{
"datatype": "json" || "csv",
"outputsize": "compact" || "full",
}
alpha.stocks.dailyAdjusted(ticker, options = optional)
This API returns weekly time series (last trading day of each week, weekly open, weekly high, weekly low, weekly close, weekly volume) of the global equity specified, covering 20+ years of historical data.
The latest data point is the cumulative prices and volume information for the week (or partial week) that contains the current trading day, updated realtime.
Available options
{
"datatype": "json" || "csv",
}
alpha.stocks.weekly(ticker, options = optional)
This API returns weekly adjusted time series (last trading day of each week, weekly open, weekly high, weekly low, weekly close, weekly adjusted close, weekly volume, weekly dividend) of the global equity specified, covering 20+ years of historical data.
The latest data point is the cumulative prices and volume information for the week (or partial week) that contains the current trading day, updated realtime.
Available options
{
"datatype": "json" || "csv",
}
alpha.stocks.weeklyAdjusted(ticker, options = optional)
This API returns monthly time series (last trading day of each month, monthly open, monthly high, monthly low, monthly close, monthly volume) of the global equity specified, covering 20+ years of historical data.
The latest data point is the cumulative prices and volume information for the month (or partial month) that contains the current trading day, updated realtime.
Available options
{
"datatype": "json" || "csv",
}
alpha.stocks.monthly(ticker, options = optional)
This API returns monthly adjusted time series (last trading day of each month, monthly open, monthly high, monthly low, monthly close, monthly adjusted close, monthly volume, monthly dividend) of the equity specified, covering 20+ years of historical data.
The latest data point is the cumulative prices and volume information for the month (or partial month) that contains the current trading day, updated realtime.
Available options
{
"datatype": "json" || "csv",
}
alpha.stocks.monthlyAdjusted(ticker, options = optional)
A lightweight alternative to the time series APIs, this service returns the latest price and volume information for a security of your choice.
Available options
{
"datatype": "json" || "csv",
}
alpha.stocks.quote(ticker, options = optional)
Looking for some specific symbols or companies?
Available options
{
"datatype": "json" || "csv",
}
alpha.stocks.search(ticker, options = optional)
FAQs
Alpha Vintage API Wrapper for Node.Js
The npm package alpha_vantage_api_wrapper receives a total of 5 weekly downloads. As such, alpha_vantage_api_wrapper popularity was classified as not popular.
We found that alpha_vantage_api_wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.