with npm and Trestle?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
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`,
},
})
},
})