AbuseIPDB is a project helping make Web safer by providing a central blacklist for webmasters, system administrators, and other interested parties to report and find IP addresses that have been associated with malicious activity online.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the AbuselPDB API, you can build applications that can:
Here are some examples of what you can build with the AbuselPDB API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
abuselpdb: {
type: "app",
app: "abuselpdb",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.abuseipdb.com/api/v2/check`,
headers: {
"Key": `${this.abuselpdb.$auth.api_key}`,
},
params: {
ipAddress: `{enter_ip_here}`,
maxAgeInDays: `90`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})