with npm and Nasdaq Data Link (Time Series and Table data)?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Exports an entire table or a filtered subset as a zipped CSV file. Returns a download link for the data. Premium subscribers can use this feature up to 60 times per hour. See the documentation
Retrieves data from a specific Nasdaq Data Link table with automatic pagination. Supports filtering by columns and rows. See the documentation
Retrieves metadata for a specific Nasdaq Data Link table, including column names, types, filterable columns, and primary keys. See the documentation
The Nasdaq Data Link API provides access to financial, economic, and alternative data that powers investment decisions, research, and more. Within Pipedream, you can use this API to automate workflows involving time series and table data. This might include fetching stock prices, economic indicators, or data for quantitative analysis. By creating workflows that trigger on schedules or events, you can efficiently process and act upon this data. Combine it with other apps to gain insights, notify stakeholders, or integrate with your databases.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nasdaq_data_link_time_series_and_table_data_: {
type: "app",
app: "nasdaq_data_link_time_series_and_table_data_",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://data.nasdaq.com/api/v3/datatables/ETFG/FUND.json`,
params: {
api_key: `${this.nasdaq_data_link_time_series_and_table_data_.$auth.api_key}`,
},
})
},
})