with Explorium and Formatting?
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
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})