with npm and Explorium?
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
Emit new event when a business update occurs. See the documentation
Emit new event when a prospect update occurs. See the documentation
Enrich business data with comprehensive insights for lead generation, risk assessment, and business intelligence. See the documentation
Enrich prospect records with comprehensive professional and contact information to enhance outreach and engagement strategies. See the documentation
Fetches business records using filters. See the documentation
Match a businesse to its unique identifier using business name and domain. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
explorium: {
type: "app",
app: "explorium",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.explorium.ai/v1/credits`,
headers: {
"api_key": `${this.explorium.$auth.api_key}`,
},
})
},
})