Stock Scanner and APIs for intraday and end of day stock data, options and news.
The Mboum API offers rich financial data, including real-time stock quotes, financial statements, and market analysis. On Pipedream, this translates into the ability to craft workflows that can automate tasks for investors, analysts, and fintech applications. For instance, you can trigger actions based on stock price changes, compile financial reports, or integrate with other services to enrich financial datasets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mboum: {
type: "app",
app: "mboum",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mboum.com/api/v1/tr/trending`,
headers: {
"X-Mboum-Secret": `${this.mboum.$auth.api_key}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.