Node package manager
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
Search for rental listings in a geographical area, or by a specific address. See the documentation
Get aggregate rental statistics and listing trends for a single US zip code. See the documentation
Get a property rent estimate and comparable properties. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rentcast: {
type: "app",
app: "rentcast",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rentcast.io/v1/properties/random`,
headers: {
"accept": `application/json`,
"X-Api-Key": `${this.rentcast.$auth.api_key}`,
},
})
},
})