with Gender API and Catch-all Verifier?
The Gender API on Pipedream allows you to determine the gender of a name programmatically. By leveraging the API, you can enrich user profiles, tailor content, segment audiences, and ensure targeted communication. It's a powerful tool for marketers, HR professionals, and application developers who seek to personalize user experiences or analyze demographic data without manual guesswork.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gender_api: {
type: "app",
app: "gender_api",
}
},
async run({steps, $}) {
const data = {
"first_name": `YOUR_FIRST_NAME`,
}
return await axios($, {
method: "post",
url: `https://gender-api.com/v2/gender`,
headers: {
Authorization: `Bearer ${this.gender_api.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
catch_all_verifier: {
type: "app",
app: "catch_all_verifier",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.catchallverifier.com/api/v1/verify/single`,
headers: {
"authorization": `${this.catch_all_verifier.$auth.api_key}`,
"accept": `application/json`,
},
params: {
id: `${this.catch_all_verifier.$auth.single_verification_id}`,
},
})
},
})