The immediately productive, shareable cloud database. Bit.io is a zero-config, scalable cloud database with the social and community features of GitHub.
Go to siteThe Bit.io API lets you build applications that interact with the Bit.io platform. Using the API, you can do things like:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bit_io: {
type: "app",
app: "bit_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bit.io/api/v1beta/repos`,
headers: {
Authorization: `Bearer ${this.bit_io.$auth.api_key}`,
},
})
},
})
bit.io uses API keys for authentication. When you connect your bit.io account, Pipedream securely stores the keys so you can easily authenticate to bit.io APIs in both code and no-code steps.
To grab your API key, log into bit.io and click "Connect" and then "API / SDK" and copy your key.