The Fully Managed Event Streaming Platform
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
The Keen API lets you easily build custom analytics tools and applications.
With Keen, you can collect data from anywhere, analyze it in minutes, and
visualize it in beautiful charts and dashboards.
Some examples of what you can build with the Keen API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
keen: {
type: "app",
app: "keen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.keen.io/3.0/projects/${this.keen.$auth.projectId}/events`,
params: {
api_key: `${this.keen.$auth.apiKey}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})