Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Retrieves a list of conversations with the specified Bot in Hansei. See the documentation
The Hansei API enables you to extract meaningful insights from reflections and journals using AI. By integrating this API with Pipedream, you can automate the process of analyzing and responding to journal entries, streamlining mental health tracking, and personal growth exercises. Pipedream’s serverless platform offers a robust way to connect Hansei with various other apps, allowing for seamless workflow creation and data manipulation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hansei: {
type: "app",
app: "hansei",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hansei.app/public/v1/bots`,
headers: {
" X-API-KEY": `${this.hansei.$auth.api_key}`,
},
})
},
})