with Prospeo and Mailtrap?
Extract data from any LinkedIn profile in real-time, as well as all the data from the company page, and also find a valid verified email from the lead. See the documentation
Discover mobile numbers associated with a LinkedIn profile URL. See the documentation
Discover email addresses associated with a domain name, website, or company name. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
prospeo: {
type: "app",
app: "prospeo",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.prospeo.io/account-information`,
headers: {
"x-key": `${this.prospeo.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailtrap: {
type: "app",
app: "mailtrap",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mailtrap.io/api/accounts`,
headers: {
Authorization: `Bearer ${this.mailtrap.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})