VerifyBee is a fast and accurate customer verification service written on top of some of the must cutting edge technologies.
Go to siteVerifyBee API provides powerful and secure authentication services to help keep you and your customers safe. With VerifyBee API, you can build an array of applications that require secure authentication and identity verification procedures. Here are some examples of things you can build with VerifyBee API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
verifybee: {
type: "app",
app: "verifybee",
}
},
async run({steps, $}) {
const data = {
"email": `marc@salesforce.com`,
}
return await axios($, {
method: "post",
url: `https://app.verifybee.io/api/v1.3/verify/`,
headers: {
"Vb-Token": `${this.verifybee.$auth.api_key}`,
},
data,
})
},
})
VerifyBee uses API keys for authentication. When you connect your VerifyBee account, Pipedream securely stores the keys so you can easily authenticate to VerifyBee APIs in both code and no-code steps.
To retrieve your API keys,