Stock market fundamental and historical prices API for stocks, ETFs, mutual funds and bonds all over the world.
Emit new event for each message posted to one or more channels in a Discord server
Emit new event when historical stock prices for a specific symbol are updated.
Emit new event when historical stock prices for a specific symbol are updated.
Emit new event for each command posted to one or more channels in a Discord server
Obtain financial statements for a specific company. See the docs here
Fetch historical stock prices for a given symbol and time period. See the docs here
Find stock symbols using company names or partial symbols. See the docs here
Send a simple or structured message (using embeds) to a Discord channel
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}`,
},
})
},
})
The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})