with Savvy Folders and Blockchain Exchange?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
savvy_folders: {
type: "app",
app: "savvy_folders",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.savvyfolders.com/api/me`,
headers: {
"x-api-key": `${this.savvy_folders.$auth.api_key}`,
},
})
},
})
With the Blockchain Exchange API, you can interact with the Blockchain Exchange platform programmatically to automate trading strategies, monitor market data, and manage accounts. This robust API allows you to execute trades, retrieve real-time and historical market data, and access account information within Pipedream's serverless platform. Pipedream provides a no-code, low-code environment where you can connect the Blockchain Exchange API with hundreds of other apps to create custom, automated workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
blockchain_exchange: {
type: "app",
app: "blockchain_exchange",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.blockchain.com/v3/exchange/accounts`,
headers: {
"Accept": `application/json`,
"X-API-Token": `${this.blockchain_exchange.$auth.api_secret}`,
},
})
},
})