Keen.io

The Complete Event Data Management Solution 📊 Keen is the all in one solution for event data management, from collection to application.

Integrate the Keen.io API with the Formatting API

Setup the Keen.io API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Keen.io and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Keen.io

The Keen.io API provides robust analytics and data collection capabilities. On Pipedream, you can harness this power to create custom event tracking and analysis workflows, automate reporting, and drive data-informed decisions. With Keen.io's ability to capture, analyze, and embed event data, you can set up workflows on Pipedream that react to data streams in real-time, aggregate metrics, or trigger actions in other apps based on insights.

Connect Keen.io

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { 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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})