The Fully Managed Event Streaming Platform
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
Updates a record if recordId
is provided or adds a record to a table.
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})