with ProdataKey and Benzinga?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
prodatakey: {
type: "app",
app: "prodatakey",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://accounts.pdk.io/api/organizations/mine`,
headers: {
Authorization: `Bearer ${this.prodatakey.$auth.id_token}`,
},
})
},
})
The Benzinga API provides access to a suite of financial market data including stock quotes, news, and analysis that could be potent for traders, financial analysts, and apps needing real-time information. With Pipedream’s serverless platform, you can build dynamic automations around this data. You might set up workflows that react to market changes, enrich CRM leads with financial insights, or automate news alerts for specific stock movements.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
benzinga: {
type: "app",
app: "benzinga",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.benzinga.com/api/v2/news`,
headers: {
"accept": `application/json`,
},
params: {
token: `${this.benzinga.$auth.api_key}`,
},
})
},
})