with ViewDNS.info and Everhour?
Performs a DNS record lookup to retrieve various DNS record types for a domain. See the documentation
Retrieves the IP address history for a domain. See the documentation
Performs a reverse IP lookup to find domains hosted on the same IP address. See the documentation
Performs a reverse WHOIS search to find domains registered by the same person or organization. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
viewdns_info: {
type: "app",
app: "viewdns_info",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.viewdns.info/ping/v2/`,
params: {
host: `pipedream.com`,
apikey: `${this.viewdns_info.$auth.api_key}`,
output: `json`,
},
})
},
})
Everhour is a time tracking API that allows you to monitor project hours and manage tasks effectively. With Pipedream, you can automate workflows by integrating Everhour with various apps, streamlining time entry, syncing with project management tools, and generating custom reports. Whether you're consolidating time tracking data for invoicing or keeping project budgets in check, Everhour and Pipedream make a powerful duo for automating your time tracking and project management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
everhour: {
type: "app",
app: "everhour",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.everhour.com/users/me`,
headers: {
"Content-Type": `application/json`,
"X-Api-Key": `${this.everhour.$auth.api_token}`,
},
})
},
})