FraudLabs Pro helps merchants to protect their online e-commerce stores from malicious fraudsters. It screens all sales orders transacted using credit cards, PayPal, and so on for online frauds (also known as payment frauds or CNP frauds).
Go to siteThe FraudLabs Pro API offers a robust suite of fraud prevention tools that empower users to screen online transactions for fraud. It leverages advanced scoring analytics to rate the risk level of a transaction based on various verification checks, such as IP address, email, transaction velocity, and more. Using Pipedream, developers can integrate these capabilities into workflows to automate fraud checks, augment data analysis, and trigger actions based on fraud scores.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fraudlabs_pro: {
type: "app",
app: "fraudlabs_pro",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.fraudlabspro.com/v1/order/screen`,
params: {
key: `${this.fraudlabs_pro.$auth.api_key}`,
ip: `[ip_address]`,
},
})
},
})
E-commerce Transaction Screening: Automate the process of verifying transactions on your e-commerce platform. When a new order is placed, trigger a workflow on Pipedream to send order details to FraudLabs Pro for analysis. Depending on the fraud score, the workflow could automatically approve, flag for review, or reject the order, and update the order status in your e-commerce system.
Account Creation Monitoring: Monitor and analyze account sign-ups in real-time by integrating FraudLabs Pro with a user management platform. Each time a new user registers, a Pipedream workflow can be triggered to assess the risk of fraud. If the score exceeds a certain threshold, the account can be disabled and an alert sent to administrators.
Payment Gateway Decision Automation: Streamline the payment approval process by coupling FraudLabs Pro with your payment gateway. Upon payment submission, Pipedream can call the FraudLabs Pro API to assess the risk level. Based on the result, the workflow could either proceed with the payment process or hold the transaction for further review, and even notify your finance or security team.
Verify that an OTP sent by the Send SMS Verification API is valid. Please refer to the documentation for the explanation of the result returned.
Send an SMS with verification code and a custom message for authentication purpose. Please refer to the documentation for the explanation of the result returned. NOTE: You need to register for an API key before using this REST API. Please visit Micro Plan to sign up for an API key if you do not have one. In addition, you will also have to make sure you have enough SMS credits to send any verification SMS.
FraudLabs Pro uses API keys for authentication. When you connect your FraudLabs Pro account, Pipedream securely stores the keys so you can easily authenticate to FraudLabs Pro APIs in both code and no-code steps.
To get your API Key, sign on to your Fraudlabs Pro account and and go to the Accounts -> Licenses page.