With Tinybird's powerful API, you can build a suite of analytics applications and insights. Here are a few examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tinybird: {
type: "app",
app: "tinybird",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tinybird.co/v0/tokens`,
headers: {
Authorization: `Bearer ${this.tinybird.$auth.token}`,
},
})
},
})
Tinybird uses API keys for authentication. When you connect your Tinybird account, Pipedream securely stores the keys so you can easily authenticate to Tinybird APIs in both code and no-code steps.
You can create Auth tokens in the Console UI