Browser For AI Agents
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.
Creates a new profile from a session. A Profile stores cookies, local storage, and cache. See the documentation.
Adds a contact to a specific static list. See the documentation
Deletes an existing profile by its name. See the documentation.
Create or update a batch of contacts by its ID or email. See the documentation
Allocates a new browser session for the user, with optional configurations for ad-blocking, captcha solving, proxy usage, and idle timeout. See the documentation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
anchor_browser: {
type: "app",
app: "anchor_browser",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.anchorbrowser.io/api/profiles`,
headers: {
"anchor-api-key": `${this.anchor_browser.$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}`,
},
})
},
})