with Stormboard and ScrapeCreators?
Stormboard is a digital workspace designed for interactive planning and collaboration. Leveraging its API on Pipedream, you can automate workflows to streamline idea management and decision-making processes. Create, update, and manage ideas captured in Stormboard in real-time, and sync them with other business tools for enhanced productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
stormboard: {
type: "app",
app: "stormboard",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.stormboard.com/users/test`,
headers: {
"X-API-Key": `${this.stormboard.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scrapecreators: {
type: "app",
app: "scrapecreators",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scrapecreators.com/v1/twitter/profile`,
headers: {
"x-api-key": `${this.scrapecreators.$auth.api_key}`,
},
params: {
handle: `pipedreamhq`,
},
})
},
})