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
The Loops.so API enables you to automate repetitive tasks, create custom integrations, and manage video campaigns directly from Pipedream. It offers endpoints to manage videos, incorporate user-generated content, and track metrics. On Pipedream, you can connect Loops.so with a multitude of other services for seamless data flow across platforms, enabling efficient automation of content distribution, marketing analytics, and customer engagement workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
loops_so: {
type: "app",
app: "loops_so",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.loops.so/api/v1/api-key`,
headers: {
Authorization: `Bearer ${this.loops_so.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})