with JoggAI and Insites?
Emit new event when a new analysis is completed. See the documentation
Emit new event when the status of a video changes in JoggAI.
Creates an AI avatar photo using JoggAI API. See the documentation
Fetch a report from Insites based on the provided business details. See the documentation
Creates an avatar video using JoggAI API. See the documentation
Creates a product from product info using JoggAI API. See the documentation
Creates a product from a URL using JoggAI API. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
joggai: {
type: "app",
app: "joggai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.jogg.ai/v1/templates`,
headers: {
"x-api-key": `${this.joggai.$auth.api_key}`,
},
})
},
})
The Insites API offers a suite of tools for website testing and monitoring, enabling users to automate the process of checking website quality, performance, and compliance with SEO and accessibility standards. With Pipedream, you can harness this API to create workflows that trigger on events across your apps, perform actions based on website analysis results, and automate repetitive tasks that ensure your website maintains high standards for your users.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
insites: {
type: "app",
app: "insites",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.insites.com/api/v1/users`,
headers: {
"api-key": `${this.insites.$auth.api_key}`,
},
})
},
})