with Domain Group and ViewDNS.info?
Emit new event when an agency listing is updated. See the documentation
Emit new event when a new agency is created. See the documentation
Emit new event when a new agency listing is created. See the documentation
Performs a DNS record lookup to retrieve various DNS record types for a domain. See the documentation
Creates a new business listing. See the documentation
Retrieves the IP address history for a domain. See the documentation
Creates a new commercial listing. See the documentation
Performs a reverse IP lookup to find domains hosted on the same IP address. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
domain_group: {
type: "app",
app: "domain_group",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.domain_group.$auth.api_url}/v1/me`,
headers: {
Authorization: `Bearer ${this.domain_group.$auth.oauth_access_token}`,
},
})
},
})
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`,
},
})
},
})