with Planpoint and CoinLore?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
planpoint: {
type: "app",
app: "planpoint",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.planpoint.io/api/projects`,
headers: {
"authorization": `${this.planpoint.$auth.oauth_access_token}`,
},
})
},
})
The CoinLore API provides real-time access to cryptocurrency market data, allowing you to fetch current prices, historical statistics, ticker information, and global market metrics. Leveraging Pipedream's serverless platform enables you to create automated workflows that can react to changes in cryptocurrency data, integrate with other services, and perform actions based on crypto market conditions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
coinlore: {
type: "app",
app: "coinlore",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.coinlore.net/api/global/`,
})
},
})