Keen.io

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

Go to site
Explore
/
Apps
/
Keen.io

Keen.io API Integrations

Build and run workflows using the Keen.io API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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}`,
      },
    })
  },
})

Authentication

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,

  • Navigate to your Keen.io account and sign in
  • Go to “Go to project view”
  • Select on one of your Projects on the dropdown
  • Go to “Access”
  • Select the key that makes sense based on the level of access you need

Learn more about your Keen.io Access Keys in their docs.