Data for Security companies, researchers and teams.
Returns the current data about the given hostname. See the documentation
Lists out specific historical information about the given hostname parameter. See the documentation
Returns the neighbors in any given IP level range and essentially allows you to explore closeby IP addresses.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
securitytrails: {
type: "app",
app: "securitytrails",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.securitytrails.com/v1/account/usage`,
headers: {
"APIKEY": `${this.securitytrails.$auth.api_key}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.