with Imagga and Nuclino?
Emit new event when a batch of images has been processed for categorization, tagging, or color extraction.
Emit new event when a new item or collection is created in Nuclino.
Emit new event when an item or collection is updated in Nuclino.
Assign a category to a single image based on its visual content. See the documentation
Create a new item or collection in Nuclino. See the documentation
Analyzes a batch of images for categorization, tagging, or color extraction. See the documentation
Search for items or collections in Nuclino. See the documentation
Update an existing item or collection in Nuclino. 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: {
nuclino: {
type: "app",
app: "nuclino",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nuclino.com/v0/teams`,
headers: {
"authorization": `${this.nuclino.$auth.api_key}`,
},
})
},
})