with Scrapeless and Supportivekoala?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scrapeless: {
type: "app",
app: "scrapeless",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scrapeless.com/api/v1/me`,
headers: {
"x-api-token": `${this.scrapeless.$auth.api_key}`,
},
})
},
})
The Supportivekoala API offers a range of functionalities to create personalized images with overlaid text, which can be used for social media posts, custom greeting cards, or visual content for various marketing campaigns. With its ability to dynamically generate images, the API lends itself to automation for engaging customers or audiences through visual elements that are tailored to specific individuals or groups.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supportivekoala: {
type: "app",
app: "supportivekoala",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.supportivekoala.com/v1/images`,
headers: {
Authorization: `Bearer ${this.supportivekoala.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})