with npm and Icypeas?
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
Performs a search using a domain or company name as input. See the documentation
Retrieves a result from a single search instance. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    icypeas: {
      type: "app",
      app: "icypeas",
    }
  },
  async run({steps, $}) {
    const data = {
      "email": `${this.icypeas.$auth.email}`,
    }
    return await axios($, {
      method: "post",
      url: `https://app.icypeas.com/api/a/actions/subscription-information`,
      headers: {
        "Content-Type": `application/json`,
        "Authorization": `${this.icypeas.$auth.api_key}`,
      },
      data,
    })
  },
})