with npm and Blotato?
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
Creates a new video using a template. The template takes an ID and input parameters. See documentation
Uploads a media file by providing a URL. The uploaded media will be processed and stored, returning a new media URL that can be used to publish a post. See documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    blotato: {
      type: "app",
      app: "blotato",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://backend.blotato.com/v2/users/me`,
      headers: {
        "blotato-api-key": `${this.blotato.$auth.api_key}`,
        "accept": `*/*`,
      },
    })
  },
})