with Imagga and Peerdom?
Emit new event when a batch of images has been processed for categorization, tagging, or color extraction.
Emit new event when a new member is added to a group. See the documentation
Emit new event when a new role is created in a circle. See the documentation
Assign a category to a single image based on its visual content. See the documentation
Assigns a member to a role within a circle using the Peerdom API. See the documentation
Analyzes a batch of images for categorization, tagging, or color extraction. See the documentation
Update an existing role's attributes such as name, description, or linked domains. See the documentation
The Imagga API is a powerful image recognition tool that enables you to automate the process of analyzing and tagging images. With its AI-driven capabilities, you can extract a wealth of information from visual content. It offers features such as categorization, color extraction, and auto-tagging, making it incredibly useful for building workflows that require image analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
imagga: {
type: "app",
app: "imagga",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.imagga.com/v2/usage`,
auth: {
username: `${this.imagga.$auth.api_key}`,
password: `${this.imagga.$auth.api_secret}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
peerdom: {
type: "app",
app: "peerdom",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.peerdom.app/v1/tenant`,
headers: {
"content-type": `application/json`,
"x-api-key": `${this.peerdom.$auth.api_key}`,
},
})
},
})