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
Retrieve detailed information about a specific phone number, including name, location, and carrier. See the documentation
Retrieve the profile picture associated with a phone number. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
callerapi: {
type: "app",
app: "callerapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://callerapi.com/api/me`,
headers: {
"x-auth": `${this.callerapi.$auth.api_key}`,
},
})
},
})