with ViewDNS.info and Roboflow ?
Performs a DNS record lookup to retrieve various DNS record types for a domain. See the documentation
Run inference on classification models hosted on Roboflow. See the documentation
Retrieves the IP address history for a domain. See the documentation
Run inference on your object detection models hosted on Roboflow. 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: {
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`,
},
})
},
})
The Roboflow API is a robust machine learning interface that allows developers to upload, annotate, train, and deploy computer vision models. Using Pipedream, you can create powerful, serverless workflows to automate tasks involving image and video processing. With the API, you can programmatically manage datasets, kick off model training, and utilize trained models to analyze new data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
roboflow: {
type: "app",
app: "roboflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.roboflow.com/`,
params: {
api_key: `${this.roboflow.$auth.api_key}`,
},
})
},
})