Imagga Image Recognition API provides solutions for image tagging & categorization, visual search, content moderation.
Emit new event when a batch of images has been processed for categorization, tagging, or color extraction.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Assign a category to a single image based on its visual content. See the documentation
Analyzes a batch of images for categorization, tagging, or color extraction. See the documentation
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. 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}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})