with npm and BuySellAds?
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
Returns the creative stats for line items. See the documentation
Returns the creative stats by day for line items. See the documentation
Returns the daily stats for active line items. See the documentation
Returns the details of active line items. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
buysellads: {
type: "app",
app: "buysellads",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://papi.buysellads.com/daily-stats`,
params: {
key: `${this.buysellads.$auth.api_key}`,
},
})
},
})