Node module to interact with the Quandl API. with support for promises. For a list of possible parameters and filters check out the official API Docs for Quandl
npm install quandl-node
const Quandl = require("quandl-node")
let quandl = new Quandl({
key:"Your-Api-key"
});
let data:any = await quandl.timeseries.data({
database:"WIKI",
dataset:"FB",
start_date:"2017-06-12",
end_date: "2017-12-12",
order:"asc",
limit:15
});
let data:any = await quandl.timeseries.metadata({
database:"WIKI"
});
let data:any = await quandl.timeseries.all({
database:"WIKI",
dataset:"FB",
start_date:"2017-06-12",
end_date: "2017-12-12",
order:"asc",
limit:15
});
let data:any = await quandl.table.rows({
publisher:"ETFG",
datatable:"FUND",
filter: {
ticker:"SPY"
}
});
let data:any = await quandl.table.metadata({
publisher:"AR",
datatable:"MWCS"
});