Uncover complex fraud patterns by going deeper and enrich data at scale by leveraging OSINT.
Performs a risk analysis on a given email address and provides a risk score indicating if the email is disposable, risky, or safe. See the documentation
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Conducts a risk assessment and digital lookup for a provided phone number. Returns a risk score indicating if the number is disposable, risky, or safe, along with carrier details, location, and potential social profiles. See the documentation
The Defastra API is a tool designed for automating and integrating your cybersecurity efforts. It offers features such as vulnerability scans, monitoring of dark web activities, and risk assessments. When combined with Pipedream’s capabilities, you can create powerful, automated workflows to enhance your security posture. You can trigger events in real-time, process data, and connect to numerous other services, all of which help in proactively managing cybersecurity threats.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
defastra: {
type: "app",
app: "defastra",
}
},
async run({steps, $}) {
const data = {
"email": `sergio@pipekit.pro`,
}
return await axios($, {
method: "post",
url: `https://api.defastra.com/deep_email_check`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
"X-API-KEY": `${this.defastra.$auth.api_key}`,
},
data,
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}