Build & use computer vision models fast✨
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a custom object.
Run inference on classification models hosted on Roboflow. See the documentation.
Adds a contact to a specific static list. See the documentation
Run inference on your object detection models hosted on Roboflow. See the documentation.
Create or update a batch of contacts by its ID or email. See the documentation
Upload an image to a project on the Roboflow platform. See the documentation.
The Roboflow API is a robust machine learning interface that allows developers to upload, annotate, train, and deploy computer vision models. Using Pipedream, you can create powerful, serverless workflows to automate tasks involving image and video processing. With the API, you can programmatically manage datasets, kick off model training, and utilize trained models to analyze new data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
roboflow: {
type: "app",
app: "roboflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.roboflow.com/`,
params: {
api_key: `${this.roboflow.$auth.api_key}`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})