Easy-to-use & feature complete IP Geolocation API with global coverage.
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.
Checks the provided IP address (both v4
& v6
formats) and returns all available information. See the docs here
Adds a contact to a specific static list. See the documentation
Retrieves information for a specific ASN (autonomous system number). See the docs here
Create or update a batch of contacts by its ID or email. See the documentation
Retrieves all domains hosted on a single IP address. See the docs here
The ipbase API offers the ability to get detailed information about IP addresses, including geolocation data, ISP details, and connection type. Using this API on Pipedream allows for the automation of tasks like analyzing web traffic, customizing user content based on location, and enhancing cybersecurity measures by detecting unusual IP activities. On Pipedream, you can integrate this API into workflows that trigger automatically, process the data, and connect with other services for comprehensive solutions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ipbase: {
type: "app",
app: "ipbase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ipbase.com/v2/info`,
params: {
apikey: `${this.ipbase.$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}`,
},
})
},
})