import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
limitless_ai: {
type: "app",
app: "limitless_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.limitless.ai/v1/lifelogs`,
headers: {
"x-api-key": `${this.limitless_ai.$auth.api_key}`,
},
})
},
})
Returns a list of lifelog entries based on specified time range or date. See the documentation
Limitless.ai uses API keys for authentication. When you connect your Limitless.ai account, Pipedream securely stores the keys so you can easily authenticate to Limitless.ai APIs in both code and no-code steps.