Focuster is a web app that helps you manage your focus so you can make consistent progress on your most important goals.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
focuster: {
type: "app",
app: "focuster",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://next.focuster.com/api/v1/actions.json`,
params: {
api_key: `${this.focuster.$auth.api_key}`,
},
})
},
})
Focuster uses API keys for authentication. When you connect your Focuster account, Pipedream securely stores the keys so you can easily authenticate to Focuster APIs in both code and no-code steps.
You can integrate your Focuster account with other tools using your API key. You can find it on the Settings page in the Integration section.