Connect your data from any tool and track it from any device. No more logging into dozens of different tools to understand performance — now you and your team can easily connect your data, build and share reports, monitor trends, and discover insights.
Go to siteYou can use the Databox API to build a variety of applications, including:
import Databox from 'databox'
export default defineComponent({
props: {
databox: {
type: "app",
app: "databox",
},
},
async run({steps, $}) {
const client = new Databox({
push_token: `${this.databox.$auth.token}`
})
return await new Promise((resolve) => client.metrics((metrics) => resolve(metrics)))
}
})
Databox uses API keys for authentication. When you connect your Databox account, Pipedream securely stores the keys so you can easily authenticate to Databox APIs in both code and no-code steps.
Refer to the Databox documentation to create your token and get started.