with Limitless.ai and Phonely?
Returns a list of lifelog entries based on specified time range or date. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
phonely: {
type: "app",
app: "phonely",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.phonely.ai/api/list-voices`,
headers: {
"x-authorization": `${this.phonely.$auth.api_key}`,
},
})
},
})