with EODHD APIs and Egnyte?
Emit new event when historical stock prices for a specific symbol are updated.
Emit new event when a file is added within the specified folder in Egnyte. See the documentation
Emit new event when historical stock prices for a specific symbol are updated.
Emit new event when a folder is added within the specified folder in Egnyte. See the documentation
Obtain financial statements for a specific company. See the docs here
Creates a new folder in your Egnyte workspace. See the documentation
Fetch historical stock prices for a given symbol and time period. See the docs here
Uploads a file to a specified folder in Egnyte. See the documentation
Find stock symbols using company names or partial symbols. See the docs here
EODHD API offers comprehensive financial data, including end-of-day stocks, ETFs, and mutual fund prices, dividends, splits, and more across multiple exchanges globally. On Pipedream, you can harness this treasure trove of financial information to automate market analysis, update data stores, or trigger notifications based on stock movements or financial news.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
eodhd_apis: {
type: "app",
app: "eodhd_apis",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://eodhistoricaldata.com/api/eod/AAPL.US`,
params: {
api_token: `${this.eodhd_apis.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
egnyte: {
type: "app",
app: "egnyte",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.egnyte.$auth.subdomain}.egnyte.com/pubapi/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.egnyte.$auth.oauth_access_token}`,
},
})
},
})