KVdb is designed for quick and easy integration into projects that need a globally accessible key-value database. To get started, create at API key at https://kvdb.io/
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kvdb: {
type: "app",
app: "kvdb",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://kvdb.io/${this.kvdb.$auth.api_key}/`,
})
},
})
KVdb uses API keys for authentication. When you connect your KVdb account, Pipedream securely stores the keys so you can easily authenticate to KVdb APIs in both code and no-code steps.
Not all API endpoints in KVdb require the use of an API key, however buckets can be protected with secret keys. They can be generated by sending a request the endpoint Create Bucket.