with Trestle and Mailsoftly?
Validates phone numbers and provides phone metadata. See the documentation
Verifies and grades phone numbers, emails, and addresses. See the documentation
Offers comprehensive verification and enrichment of phone numbers. See the documentation
The Trestle API provides a platform for real estate data integration, offering access to listings, open houses, and other relevant data. It's designed for developers building applications that require up-to-date real estate information. On Pipedream, you can harness this data to create automated workflows that respond to changes in listings, sync data between platforms, or generate real-time analytics.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trestle: {
type: "app",
app: "trestle",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.trestleiq.com/3.0/phone_intel`,
headers: {
"x-api-key": `${this.trestle.$auth.api_key}`,
},
params: {
phone: `+14083726197`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailsoftly: {
type: "app",
app: "mailsoftly",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.mailsoftly.com/api/v3/authentication`,
headers: {
"authorization": `${this.mailsoftly.$auth.api_key}`,
},
})
},
})