Enigma provides fresh, accurate data about the identity and financial health of every small business.
The Enigma API offers access to a vast repository of global public data, which can be harnessed to enrich business intelligence, enhance analytics, and automate due diligence processes. By tapping into Enigma's curated datasets on Pipedream, you can seamlessly integrate real-time insights into your applications or workflows, perform comprehensive data analysis, and cross-reference multiple sources to uncover critical information on businesses, markets, and economies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
enigma: {
type: "app",
app: "enigma",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.enigma.com/businesses/{your_enigma_id}`,
headers: {
"x-api-key": `${this.enigma.$auth.api_key}`,
"accept": `application/json`,
},
params: {
lookback_months: `1`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.