We offer Threat Analysis APIs for Threat Detection & Prevention. IP Reputation API, Domain Reputation API, and more.
Go to siteWith the Api Void API, you can build apps that:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
api_void: {
type: "app",
app: "api_void",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://endpoint.apivoid.com/iprep/v1/pay-as-you-go/`,
params: {
key: `${this.api_void.$auth.api_key}`,
ip: `{enter_ip_here}`,
},
})
},
})
Api Void uses API keys for authentication. When you connect your Api Void account, Pipedream securely stores the keys so you can easily authenticate to Api Void APIs in both code and no-code steps.
Generate and copy your API Keys from your dashboard on the “My API Keys“ page.