with World News API and EODHD APIs?
Emit new event when historical stock prices for a specific symbol are updated.
Emit new event whenever recent news are published. Calling this endpoint requires 1 point per page, up to 1000 news. See the docs here
Emit new event when historical stock prices for a specific symbol are updated.
Extract a news article from a website to a well structure JSON object. See the docs here. Calling this endpoint requires 1 point, plus 2 points if analyze is true.
Obtain financial statements for a specific company. See the docs here
Retrieve the latitude and longitude of a location name. See the docs here. Calling this endpoint requires 1 point.
Search and filter news. See the docs here Calling this endpoint requires 1 point
Fetch historical stock prices for a given symbol and time period. See the docs here
The World News API provides access to news articles from around the world in real-time. With it, you can fetch the latest news by category, country, language, and keyword. In Pipedream, this powerful API integrates into workflows, allowing you to automate actions based on current events, monitor specific topics, and even enrich your applications with timely content.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
world_news_api: {
type: "app",
app: "world_news_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.worldnewsapi.com/search-news`,
params: {
"api-key": `${this.world_news_api.$auth.api_key}`,
text: `{your_text}`,
},
})
},
})
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}`,
},
})
},
})