The Complete Event Data Management Solution 📊 Keen is the all in one solution for event data management, from collection to application.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
keen_io: {
type: "app",
app: "keen_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.keen.io/3.0/projects/${this.keen_io.$auth.project_id}/events`,
params: {
api_key: `${this.keen_io.$auth.key}`,
},
})
},
})
Keen.io uses API keys for authentication. When you connect your Keen.io account, Pipedream securely stores the keys so you can easily authenticate to Keen.io APIs in both code and no-code steps.
To retrieve your Project ID and API keys,
Learn more about your Keen.io Access Keys in their docs.