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.
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`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})