with Finage and Virifi?
The Finage API provides real-time, historical, and market data across stocks, currencies, and cryptocurrencies. Integrating Finage with Pipedream allows you to create workflows that react to market changes, automate trading analysis, and consolidate financial data for reporting. With Pipedream, you can tap into webhooks, schedules, and over 800+ apps for extensive automation possibilities, leveraging Finage's vast financial datasets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
finage: {
type: "app",
app: "finage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.finage.co.uk/last/forex/GBPUSD`,
params: {
apikey: `${this.finage.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
virifi: {
type: "app",
app: "virifi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://virifi.io/api/developer/ping`,
headers: {
Authorization: `Bearer ${this.virifi.$auth.api_key}`,
},
})
},
})