Every thing works better together
Fetches specified data for a company using a domain name. See the documentation
Obtains HTML from a given website through web scraping for high performance access and interpretation. See the documentation
Retrieves the core technology used on a designated website. (CMS, Framework, Analytics, CDN, Hosting, etc.) See the documentation
IFTTT (If This Then That) is a service that lets you create chains of conditional statements, known as applets. These applets can automate tasks across a variety of web services and APIs. By integrating IFTTT with Pipedream, you unlock the ability to handle complex logic, manage state, transform data, and interact with over 600+ supported apps in Pipedream’s ecosystem. You can trigger workflows on Pipedream with events from IFTTT and vice versa, creating a seamless automation experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ifttt: {
type: "app",
app: "ifttt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect.ifttt.com//v2/me`,
headers: {
"IFTTT-Service-Key": `${this.ifttt.$auth.ifttt_Service_Key}`,
},
})
},
})
Piloterr API allows you to integrate and automate various aspects of project management and team collaboration. Within Pipedream's serverless platform, you can leverage this API to create custom workflows, connecting Piloterr's capabilities with other apps to streamline operations, trigger actions based on project updates, and synchronize data across different tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
piloterr: {
type: "app",
app: "piloterr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://piloterr.com/api/usage`,
headers: {
"x-api-key": `${this.piloterr.$auth.api_key}`,
},
})
},
})